Skip to content

Commit

Permalink
fix: semantic-release not build
Browse files Browse the repository at this point in the history
  • Loading branch information
luthfimasruri committed Mar 29, 2021
1 parent 4f2808b commit 8422c91
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
},
"dependencies": {
"@tailwindcss/custom-forms": "^0.2.1",
"@vueup/vue-quill": "^1.0.0-alpha.10"
"@vueup/vue-quill": "^1.0.0-alpha.14"
}
}
2 changes: 1 addition & 1 deletion packages/vue-quill/src/assets/snow.styl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ backgroundColor = #fff
inactiveColor = #4B5563
shadowColor = #D1D5DB
textColor = #4B5563
// Additional colors
// Additional color
backgroundHoverColor = #F3F4F6
backgroundActiveColor = #DBEAFE

Expand Down
6 changes: 5 additions & 1 deletion scripts/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@
const targets = args._

if (process.env.CI && targets[0]) {
console.log("execute zip >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>")
execa.sync('zip', ['-r', `${targets[0]}-dist.zip`, '.', '-i', 'dist'])
execa.sync('npx', ['semantic-release'])
console.log("execute semantic-release >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>")
const a = execa.sync('npx', ['semantic-release'])
console.log("A", a)
console.log("finished execution >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>")
} else {
console.log(chalk.redBright("You can't run semantic-release locally"))
}
Expand Down

0 comments on commit 8422c91

Please sign in to comment.