Skip to content

Commit

Permalink
fix: this is might the last one
Browse files Browse the repository at this point in the history
  • Loading branch information
luthfimasruri committed Mar 29, 2021
1 parent e83a66a commit b9b750c
Show file tree
Hide file tree
Showing 2 changed files with 9 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
9 changes: 8 additions & 1 deletion scripts/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
"@semantic-release/exec",
{
prepareCmd: "npx ts-node ../../scripts/build.ts --nextVersion ${nextRelease.version}"
}
],
'@semantic-release/npm',
[
'@semantic-release/github',
Expand Down Expand Up @@ -59,6 +65,7 @@
}

async function release() {
const rootDir = path.resolve(__dirname, '..')
try {
console.log(`>>>>>>>>>>>>> Semantic release`)
const result = await semanticRelease({
Expand All @@ -68,7 +75,7 @@
plugins: releaserc.plugins
}, {
// Run semantic-release from `/path/to/git/repo/root` without having to change local process `cwd` with `process.chdir()`
// cwd: '',
cwd: rootDir,
// Pass the variable `MY_ENV_VAR` to semantic-release without having to modify the local `process.env`
env: { ...process.env },
// Store stdout and stderr to use later instead of writing to `process.stdout` and `process.stderr`
Expand Down

0 comments on commit b9b750c

Please sign in to comment.