Skip to content

Commit

Permalink
fix: semantic release config path
Browse files Browse the repository at this point in the history
  • Loading branch information
luthfimasruri committed Mar 28, 2021
1 parent a8a3705 commit 4b6e226
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion scripts/semantic-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if (process.env.CI && targets[0]) {
const target = targets[0]
const pkgDir = path.resolve(__dirname, '../packages', target)
const distDir = path.resolve(pkgDir, 'dist')
const semanticReleaseConfig = path.resolve(pkgDir, 'semantic-release.json')
const semanticReleaseConfig = path.resolve(pkgDir, '.releaserc.json')
execa.sync('zip', ['-r', `${target}vue-quill-dist.zip`, '.', '-i', distDir])
execa.sync('npx', ['semantic-release', '--extends', semanticReleaseConfig])
} else {
Expand Down

0 comments on commit 4b6e226

Please sign in to comment.