pull/101/head
xiaojunnuo 2024-07-23 23:39:13 +08:00
parent b9fe3b9c87
commit f7fc06e657
2 changed files with 8 additions and 2 deletions

View File

@ -12,7 +12,7 @@
"scripts": { "scripts": {
"start": "lerna bootstrap --hoist", "start": "lerna bootstrap --hoist",
"i-all": "lerna link && lerna exec npm install ", "i-all": "lerna link && lerna exec npm install ",
"publish": "npm run prepublishOnly1 && lerna publish --conventional-commits && npm run afterpublishOnly && npm run deploy1", "publish": "npm run prepublishOnly1 && lerna publish --conventional-commits --create-release github && npm run afterpublishOnly && npm run deploy1",
"afterpublishOnly": "", "afterpublishOnly": "",
"prepublishOnly1": "npm run check && npm run before-build && lerna run build ", "prepublishOnly1": "npm run check && npm run before-build && lerna run build ",
"before-build": "cd ./packages/core/acme-client && time /t >build.md && git add build.trigger && git commit -m \\\"build: prepare to build\\\"", "before-build": "cd ./packages/core/acme-client && time /t >build.md && git add build.trigger && git commit -m \\\"build: prepare to build\\\"",

View File

@ -8,6 +8,12 @@ function check(){
console.error("git-add 没有修改过") console.error("git-add 没有修改过")
throw new Error("git-add 还没修改过") throw new Error("git-add 还没修改过")
} }
//GH_TOKEN
if(!process.env.GH_TOKEN){
console.error("GH_TOKEN 未设置")
throw new Error("GH_TOKEN 未设置")
}
} }
check() check()