File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 55
55
NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
56
56
- name : Publish
57
57
run : |
58
- npx lerna publish --yes
58
+ npx lerna publish --yes --no-granular-pathspec
59
59
env :
60
60
GITHUB_AUTH : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 10
10
"scripts" : {
11
11
"build" : " lerna run build --sort --stream --scope=@vue-async/*" ,
12
12
"test" : " jest --coverage --passWithNoTests" ,
13
+ "version" : " lerna run build:version --sort --stream --scope=@vue-async/*" ,
13
14
"prepublishOnly" : " yarn install --ignore-scripts && yarn changelog && yarn build && yarn test" ,
14
15
"release" : " lerna publish" ,
15
16
"release:git" : " lerna publish form-git" ,
Original file line number Diff line number Diff line change 26
26
"scripts" : {
27
27
"serve:playground" : " nuxt dev playground -p 7001" ,
28
28
"serve" : " concurrently --raw \" tsc --project tsconfig.build.json --module es2015 --outDir esm -watch\" \" yarn serve:playground\" " ,
29
- "prebuild " : " node -p \" 'export const version: string = ' + JSON.stringify(require('./package.json').version) + ';' \" > src/version.ts " ,
30
- "build" : " rimraf -rf lib esm dist && yarn build:cjs && yarn build:esm && yarn build:umd " ,
29
+ "build " : " rimraf -rf lib esm dist && yarn build:version && yarn build:cjs && yarn build:esm && yarn build:umd " ,
30
+ "build:version " : " node -p \" 'export const version: string = ' + JSON.stringify(require('./package.json').version) + ';' \" > src/version.ts " ,
31
31
"build:cjs" : " tsc --project tsconfig.build.json" ,
32
32
"build:esm" : " tsc --project tsconfig.build.json --module es2015 --outDir esm" ,
33
33
"build:umd" : " rollup --config" ,
Original file line number Diff line number Diff line change 24
24
"scripts" : {
25
25
"serve:playground" : " nuxt dev playground -p 7003" ,
26
26
"serve" : " concurrently --raw \" tsc --project tsconfig.build.json --module es2015 --outDir esm -watch\" \" yarn serve:playground\" " ,
27
- "prebuild " : " node -p \" 'export const version: string = ' + JSON.stringify(require('./package.json').version) + ';' \" > src/version.ts " ,
28
- "build" : " rimraf -rf lib esm dist && yarn build:cjs && yarn build:esm && yarn build:umd " ,
27
+ "build " : " rimraf -rf lib esm dist && yarn build:version && yarn build:cjs && yarn build:esm && yarn build:umd " ,
28
+ "build:version " : " node -p \" 'export const version: string = ' + JSON.stringify(require('./package.json').version) + ';' \" > src/version.ts " ,
29
29
"build:cjs" : " tsc --project tsconfig.build.json" ,
30
30
"build:esm" : " tsc --project tsconfig.build.json --module es2015 --outDir esm" ,
31
31
"build:umd" : " rollup --config" ,
You can’t perform that action at this time.
0 commit comments