Skip to content

Commit 25bb429

Browse files
committed
fix: coba lagi dah
1 parent d0865e4 commit 25bb429

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,20 @@
4646
}
4747

4848
async function prepare(target: string, nextVersion: string) {
49-
const buildScript = path.resolve(__dirname, 'build.ts')
50-
console.log(chalk.bgCyan("Build package"))
51-
await execa('npx', ['ts-node', buildScript, '--nextVersion', nextVersion])
52-
console.log(chalk.bgCyan("Zipping distribution file"))
53-
await execa('zip', ['-r', `${target}-dist.zip`, '.', '-i', 'dist'])
49+
try {
50+
const buildScript = path.resolve(__dirname, 'build.ts')
51+
console.log(chalk.bgCyan("Build package"))
52+
execa.sync('npx', ['ts-node', buildScript, '--nextVersion', nextVersion])
53+
console.log(chalk.bgCyan("Zipping distribution file"))
54+
execa.sync('zip', ['-r', `${target}-dist.zip`, '.', '-i', 'dist'])
55+
} catch (err) {
56+
console.log(`>>>>>>>>>>>>> ${err}`)
57+
}
5458
}
5559

5660
async function release() {
5761
try {
62+
console.log(`>>>>>>>>>>>>> Semantic release`)
5863
const result = await semanticRelease({
5964
// Core options
6065
branches: releaserc.branches,
@@ -71,6 +76,7 @@
7176
});
7277

7378
if (result) {
79+
console.log(`>>>>>>>>>>>>> Result`)
7480
const { lastRelease, commits, nextRelease, releases } = result;
7581

7682
console.log(`Published ${nextRelease.type} release version ${nextRelease.version} containing ${commits.length} commits.`);

0 commit comments

Comments
 (0)