Skip to content

Commit be0ec25

Browse files
committed
chore: add release script that just runs npm publish in all packages
this will bypass anything that lerna does - but we've been having trouble using lerna as it easily breaks if one package happens to be published manually etc. Next step we'll just run this script in CI and auto release whenever something is pushed to master.
1 parent e841890 commit be0ec25

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"name": "root",
33
"private": true,
44
"scripts": {
5-
"lerna": "lerna"
5+
"lerna": "lerna",
6+
"publish.all": "lerna exec --no-bail --stream --concurrency 1 -- \"npm publish\""
67
},
78
"devDependencies": {
89
"lerna": "~3.14.0"

0 commit comments

Comments
 (0)