Skip to content

Commit

Permalink
Merge pull request #223 from idrawjs/dev-v0.4
Browse files Browse the repository at this point in the history
chore: upgrade version 0.4.0-alpha.2
  • Loading branch information
chenshenhai authored Oct 15, 2023
2 parents 5d15d9b + b82dd93 commit a1dd775
Show file tree
Hide file tree
Showing 10 changed files with 46 additions and 28 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,15 @@ jobs:
- run: npm publish -w ./packages/util --tag next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm publish -w ./packages/renderer --tag next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm publish -w ./packages/board --tag next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm publish -w ./packages/core --tag next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm publish -w ./packages/idraw --tag next
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": false,
"version": "0.4.0-alpha.1",
"version": "0.4.0-alpha.2",
"workspaces": [
"packages/*"
],
Expand Down
6 changes: 3 additions & 3 deletions packages/board/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@idraw/board",
"version": "0.4.0-alpha.1",
"version": "0.4.0-alpha.2",
"description": "",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
Expand All @@ -24,8 +24,8 @@
"@idraw/types": "^0.4.0-alpha.0"
},
"dependencies": {
"@idraw/util": "^0.4.0-alpha.1",
"@idraw/renderer": "^0.4.0-alpha.1"
"@idraw/util": "^0.4.0-alpha.2",
"@idraw/renderer": "^0.4.0-alpha.2"
},
"publishConfig": {
"access": "public"
Expand Down
8 changes: 4 additions & 4 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@idraw/core",
"version": "0.4.0-alpha.1",
"version": "0.4.0-alpha.2",
"description": "",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
Expand All @@ -24,9 +24,9 @@
"@idraw/types": "^0.4.0-alpha.0"
},
"dependencies": {
"@idraw/board": "^0.4.0-alpha.1",
"@idraw/renderer": "^0.4.0-alpha.1",
"@idraw/util": "^0.4.0-alpha.1"
"@idraw/board": "^0.4.0-alpha.2",
"@idraw/renderer": "^0.4.0-alpha.2",
"@idraw/util": "^0.4.0-alpha.2"
},
"publishConfig": {
"access": "public"
Expand Down
6 changes: 3 additions & 3 deletions packages/idraw/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "idraw",
"version": "0.4.0-alpha.1",
"version": "0.4.0-alpha.2",
"description": "",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
Expand All @@ -24,8 +24,8 @@
"@idraw/types": "^0.4.0-alpha.0"
},
"dependencies": {
"@idraw/core": "^0.4.0-alpha.1",
"@idraw/util": "^0.4.0-alpha.1"
"@idraw/core": "^0.4.0-alpha.2",
"@idraw/util": "^0.4.0-alpha.2"
},
"publishConfig": {
"access": "public"
Expand Down
6 changes: 3 additions & 3 deletions packages/lab/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@idraw/lab",
"version": "0.4.0-alpha.1",
"version": "0.4.0-alpha.2",
"dependencies": {
"@ant-design/icons": "^5.1.3",
"@idraw/core": "^0.4.0-alpha.1",
"@idraw/util": "^0.4.0-alpha.1",
"@idraw/core": "^0.4.0-alpha.2",
"@idraw/util": "^0.4.0-alpha.2",
"antd": "^5.5.0",
"classnames": "^2.3.2",
"react": "^18.2.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@idraw/renderer",
"version": "0.4.0-alpha.1",
"version": "0.4.0-alpha.2",
"description": "",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
Expand All @@ -24,7 +24,7 @@
"@idraw/types": "^0.4.0-alpha.0"
},
"dependencies": {
"@idraw/util": "^0.4.0-alpha.1"
"@idraw/util": "^0.4.0-alpha.2"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@idraw/types",
"version": "0.4.0-alpha.1",
"version": "0.4.0-alpha.2",
"description": "",
"main": "src/index.ts",
"types": "src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/util/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@idraw/util",
"version": "0.4.0-alpha.1",
"version": "0.4.0-alpha.2",
"description": "",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
Expand Down
26 changes: 16 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a1dd775

Please sign in to comment.