Skip to content

Commit 613d9f7

Browse files
committed
ci(publish): update publish config and version v0.0.14
1 parent 86fee50 commit 613d9f7

File tree

16 files changed

+25
-25
lines changed

16 files changed

+25
-25
lines changed

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- run: yarn
1717
- run: yarn build
1818
- run: yarn test
19-
- run: yarn run publish
19+
- run: npm run publish
2020
env:
2121
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
2222
CI: true

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packages/*"
44
],
55
"npmClient": "yarn",
6-
"version": "0.0.11"
6+
"version": "0.0.14"
77
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"build:docs": "ts-node scripts/typedoc.ts",
3030
"commit": "yarn git-cz",
3131
"version": "lerna version --amend --no-git-tag-version",
32-
"publish": "cd packages/reactant-template && npm publish"
32+
"publish": "lerna exec --no-private --no-bail -- npm publish"
3333
},
3434
"repository": {
3535
"type": "git",

packages/reactant-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reactant-cli",
3-
"version": "0.0.11",
3+
"version": "0.0.14",
44
"description": "A command line interface for Reactant",
55
"engines": {
66
"node": ">=8"

packages/reactant-di/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reactant-di",
3-
"version": "0.0.11",
3+
"version": "0.0.14",
44
"description": "A dependency injection lib for Reactant",
55
"main": "dist/index.cjs.js",
66
"unpkg": "dist/index.umd.js",

packages/reactant-model/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reactant-model",
3-
"version": "0.0.11",
3+
"version": "0.0.14",
44
"description": "A model lib for Reactant",
55
"main": "dist/index.cjs.js",
66
"unpkg": "dist/index.umd.js",
@@ -18,6 +18,6 @@
1818
},
1919
"devDependencies": {
2020
"immer": "^5.3.6",
21-
"reactant-module": "^0.0.11"
21+
"reactant-module": "^0.0.14"
2222
}
2323
}

packages/reactant-module/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reactant-module",
3-
"version": "0.0.11",
3+
"version": "0.0.14",
44
"description": "A module model for Reactant",
55
"main": "dist/index.cjs.js",
66
"unpkg": "dist/index.umd.js",
@@ -22,7 +22,7 @@
2222
"license": "MIT",
2323
"dependencies": {
2424
"immer": "^5.3.6",
25-
"reactant-di": "^0.0.11",
25+
"reactant-di": "^0.0.14",
2626
"redux": "^4.0.5",
2727
"reselect": "^4.0.0"
2828
},

packages/reactant-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "reactant-native",
33
"private": true,
4-
"version": "0.0.11",
4+
"version": "0.0.14",
55
"description": "A native apps with react-native for Reactant",
66
"main": "index.js",
77
"scripts": {

packages/reactant-redux/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reactant-redux",
3-
"version": "0.0.11",
3+
"version": "0.0.14",
44
"description": "A redux lib for Reactant",
55
"main": "dist/index.cjs.js",
66
"unpkg": "dist/index.umd.js",
@@ -17,7 +17,7 @@
1717
"redux": "^4.0.5"
1818
},
1919
"devDependencies": {
20-
"reactant-module": "^0.0.11",
20+
"reactant-module": "^0.0.14",
2121
"redux": "^4.0.5"
2222
}
2323
}

packages/reactant-router-dom/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reactant-router-dom",
3-
"version": "0.0.11",
3+
"version": "0.0.14",
44
"description": "A react router dom for Reactant",
55
"main": "dist/index.cjs.js",
66
"unpkg": "dist/index.umd.js",

0 commit comments

Comments
 (0)