File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
packages/vue-quill/src/assets Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ backgroundColor = #fff
55inactiveColor = #4B 55 63
66shadowColor = #D1 D5 DB
77textColor = #4B 55 63
8- // Additional colors
8+ // Additional color
99backgroundHoverColor = #F3 F4 F6
1010backgroundActiveColor = #DB EA FE
1111
Original file line number Diff line number Diff line change 2121 plugins : [
2222 '@semantic-release/commit-analyzer' ,
2323 '@semantic-release/release-notes-generator' ,
24+ [
25+ "@semantic-release/exec" ,
26+ {
27+ prepareCmd : "npx ts-node ../../scripts/build.ts --nextVersion ${nextRelease.version}"
28+ }
29+ ] ,
2430 '@semantic-release/npm' ,
2531 [
2632 '@semantic-release/github' ,
5965 }
6066
6167 async function release ( ) {
68+ const rootDir = path . resolve ( __dirname , '..' )
6269 try {
6370 console . log ( `>>>>>>>>>>>>> Semantic release` )
6471 const result = await semanticRelease ( {
6875 plugins : releaserc . plugins
6976 } , {
7077 // Run semantic-release from `/path/to/git/repo/root` without having to change local process `cwd` with `process.chdir()`
71- // cwd: '' ,
78+ cwd : rootDir ,
7279 // Pass the variable `MY_ENV_VAR` to semantic-release without having to modify the local `process.env`
7380 env : { ...process . env } ,
7481 // Store stdout and stderr to use later instead of writing to `process.stdout` and `process.stderr`
You can’t perform that action at this time.
0 commit comments