Skip to content

Commit

Permalink
fix: add release npm script to each integration
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-prinz-mw committed Mar 1, 2023
1 parent 6f47010 commit a7f532c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion mwui-angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
"test": "ng test",
"release": "release-it"
},
"private": false,
"dependencies": {
Expand Down
3 changes: 2 additions & 1 deletion mwui-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"clean": "rm -rf dist",
"compile": "npm run tsc",
"tsc": "tsc -p .",
"rollup": "rollup -c"
"rollup": "rollup -c",
"release": "release-it"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
Expand Down
3 changes: 2 additions & 1 deletion mwui-stencil/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
"format:quick": "pretty-quick --staged",
"generate": "stencil generate",
"storybook": "start-storybook -p 6006 -s www/build",
"build-storybook": "build-storybook public -o ../docs -s www/build"
"build-storybook": "build-storybook public -o ../docs -s www/build",
"release": "release-it"
},
"dependencies": {
"@emotion/css": "^11.10.0",
Expand Down
3 changes: 2 additions & 1 deletion mwui-token-farm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"transform": "npm run transform:core && npm run transform:semantic && npm run transform:component",
"build:style-dictionary": "ts-node src/scripts/build.ts",
"build": "npm run transform && npm run build:style-dictionary",
"rollup": "rollup -c"
"rollup": "rollup -c",
"release": "release-it"
},
"author": "Martin Prinz",
"license": "ISC",
Expand Down
3 changes: 2 additions & 1 deletion mwui-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"scripts": {
"test": "node ./__tests__/mwui-vue.test.js",
"build": "npm run tsc",
"tsc": "tsc -p ."
"tsc": "tsc -p .",
"release": "release-it"
},
"dependencies": {
"@maibornwolff/mwui-stencil": "^0.1.12"
Expand Down

0 comments on commit a7f532c

Please sign in to comment.