Skip to content

Commit

Permalink
fix: dependencies installation
Browse files Browse the repository at this point in the history
  • Loading branch information
luthfimasruri committed Mar 28, 2021
1 parent 9835232 commit 3714a4c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/release-vue-quill.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: Install deps
- name: Install package deps
working-directory: packages/vue-quill
run: npm ci
- name: Install root deps
run: npm ci
- name: Release package
run: npm run release -- vue-quill
Expand Down
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: 0 additions & 2 deletions scripts/semantic-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ if (process.env.CI && targets[0]) {
const pkgDir = path.resolve(__dirname, '../packages', target)
const distDir = path.resolve(pkgDir, 'dist')
const semanticReleaseConfig = path.resolve(pkgDir, 'semantic-release.json')
execa.sync('cd', [pkgDir])
execa.sync('npm', ['ci'])
execa.sync('zip', [`${target}vue-quill-dist.zip`, '-r', distDir])
execa.sync('npx', ['semantic-release', '--extends', semanticReleaseConfig])
} else {
Expand Down

0 comments on commit 3714a4c

Please sign in to comment.