分叉回购不会将自己添加到 .bin
Forked repo doesn't add itself to .bin
运行 yarn add graphql-typewriter
将符号链接添加到 node_modules/.bin/
中的可执行文件。
但是,运行 在同一包的分叉版本上使用相同的命令:
yarn add https://github.com/teambirowsky/graphql-typewriter#0.4.0
不在 node_modules/.bin/
中添加符号链接。
今天关于 npm 我需要学习什么:}
您需要将分叉版本发布到 npm。
在 package.json
中,prepublish
脚本(运行 在打包和发布包之前,以及在没有任何参数的本地 npm install
上)正在编译文件并且 bin
脚本正在添加符号链接。
运行 yarn add graphql-typewriter
将符号链接添加到 node_modules/.bin/
中的可执行文件。
但是,运行 在同一包的分叉版本上使用相同的命令:
yarn add https://github.com/teambirowsky/graphql-typewriter#0.4.0
不在 node_modules/.bin/
中添加符号链接。
今天关于 npm 我需要学习什么:}
您需要将分叉版本发布到 npm。
在 package.json
中,prepublish
脚本(运行 在打包和发布包之前,以及在没有任何参数的本地 npm install
上)正在编译文件并且 bin
脚本正在添加符号链接。