custom-cil
v1.0.1
Published
自定义脚手架
Downloads
2
Readme
脚手架
自定义命令行
- 特殊注释 使用node执行该文件
#!/usr/bin/env node
- 自定义命令
test-cil
"bin": {
"test-cil": "src/index.js"
}
- 建立软连接
npm link
- 删除软连接
# 找到建立的软连接
npm ls -g
# 取消软连接
npm unlink -g <package_name>
# 卸载
npm uninstall -g <package_name>