gpt4 book ai didi

npm - 如何使用 devinstall 和 devuninstall 脚本?

转载 作者:行者123 更新时间:2023-12-04 17:43:47 25 4
gpt4 key购买 nike

我正在尝试将 husky 重用于其他项目(不仅仅是配置文件),构建一个将被所有其他项目使用的各种库。我无法理解如何以及何时执行 devistall 和 devuninstall 脚本。在 npmjs.com 上也找不到任何文档。有人可以帮助了解何时执行此操作吗?

最佳答案

我也一直在努力理解这一点。结果他们在发布时做了一些事情,将 _install 脚本重命名为 install

这里是通过npm安装时在husky文件夹中找到的package.json的脚本字段。

"scripts": {
"build": "del-cli lib && tsc",
"devinstall": "npm run build && npm run _install -- node_modules/husky && node scripts/dev-fix-path",
"devuninstall": "npm run build && npm run preuninstall -- node_modules/husky",
"fix": "npm run lint -- --fix",
"install": "node husky install",
"lint": "tslint 'src/**/*.ts'",
"postpublish": "pinst --disable",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run test && npm run build && pinst --enable && pkg-ok",
"preuninstall": "node husky uninstall",
"test": "npm run lint && jest",
"version": "jest -u && git add -A src/installer/__tests__/__snapshots__"
}

虽然我不知道那是在哪里做的

关于npm - 如何使用 devinstall 和 devuninstall 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53193055/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com