Skip to content

Commit a8a3705

Browse files
committed
fix: zipping dist files
1 parent 3714a4c commit a8a3705

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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 color
8+
// Additional colors
99
backgroundHoverColor = #F3F4F6
1010
backgroundActiveColor = #DBEAFE
1111

scripts/semantic-release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if (process.env.CI && targets[0]) {
1010
const pkgDir = path.resolve(__dirname, '../packages', target)
1111
const distDir = path.resolve(pkgDir, 'dist')
1212
const semanticReleaseConfig = path.resolve(pkgDir, 'semantic-release.json')
13-
execa.sync('zip', [`${target}vue-quill-dist.zip`, '-r', distDir])
13+
execa.sync('zip', ['-r', `${target}vue-quill-dist.zip`, '.', '-i', distDir])
1414
execa.sync('npx', ['semantic-release', '--extends', semanticReleaseConfig])
1515
} else {
1616
console.log(chalk.redBright("You can't run semantic-release locally"))

0 commit comments

Comments
 (0)