File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 20
20
"build:dev" : " lerna run build:dev --stream; yarn symlink" ,
21
21
"lint" : " lerna run lint --parallel" ,
22
22
"symlink" : " symlink-workspace --logLevel error" ,
23
- "postinstall" : " yarn symlink"
23
+ "postinstall" : " yarn symlink" ,
24
+ "publish" : " yarn build; yarn lerna publish --no-private" ,
25
+ "publish:minor" : " yarn build; yarn lerna publish minor --no-private"
24
26
},
25
27
"devDependencies" : {
26
28
"@types/jest" : " ^29.5.11" ,
Original file line number Diff line number Diff line change 24
24
"clean" : " rimraf dist/**" ,
25
25
"prepare" : " npm run build" ,
26
26
"codegen" : " ts-node scripts/codegen.ts" ,
27
- "build" : " npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy" ,
28
- "build:dev" : " npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy" ,
27
+ "build" : " npm run clean; npm run codegen; tsc; tsc -p tsconfig.esm.json; npm run copy" ,
28
+ "build:dev" : " npm run clean; npm run codegen; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy" ,
29
29
"lint" : " eslint . --fix" ,
30
30
"test" : " jest" ,
31
31
"test:watch" : " jest --watch"
You can’t perform that action at this time.
0 commit comments