Skip to content

Commit 8422c91

Browse files
committed
fix: semantic-release not build
1 parent 4f2808b commit 8422c91

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

docs/package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
},
2222
"dependencies": {
2323
"@tailwindcss/custom-forms": "^0.2.1",
24-
"@vueup/vue-quill": "^1.0.0-alpha.10"
24+
"@vueup/vue-quill": "^1.0.0-alpha.14"
2525
}
2626
}

packages/vue-quill/src/assets/snow.styl

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ backgroundColor = #fff
55
inactiveColor = #4B5563
66
shadowColor = #D1D5DB
77
textColor = #4B5563
8-
// Additional colors
8+
// Additional color
99
backgroundHoverColor = #F3F4F6
1010
backgroundActiveColor = #DBEAFE
1111

scripts/release.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@
66
const targets = args._
77

88
if (process.env.CI && targets[0]) {
9+
console.log("execute zip >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>")
910
execa.sync('zip', ['-r', `${targets[0]}-dist.zip`, '.', '-i', 'dist'])
10-
execa.sync('npx', ['semantic-release'])
11+
console.log("execute semantic-release >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>")
12+
const a = execa.sync('npx', ['semantic-release'])
13+
console.log("A", a)
14+
console.log("finished execution >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>")
1115
} else {
1216
console.log(chalk.redBright("You can't run semantic-release locally"))
1317
}

0 commit comments

Comments
 (0)