Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
node-version: 17
registry-url: https://registry.npmjs.org/
- run: npm run bootstrap
- run: npm run build
- run: node scripts/bump-version.js
- run: |
VERSION=$(node -p "require('./lerna.json').version")
Expand All @@ -23,11 +22,6 @@ jobs:
git commit -am "chore: Bump version ($VERSION)"
git push --set-upstream origin "bump-version-$VERSION"
PR_URL="$(gh pr create --title "chore: Bump version ($VERSION)" --body 'This is automatic PR to bump version')"
gh pr merge --auto --squash "$PR_URL"
gh release create "$VERSION" \
--repo="$GITHUB_REPOSITORY" \
--title="${VERSION#v}" \
--generate-notes \
./lib/*.zip
gh workflow run "test.yml" --ref "bump-version-$VERSION"
env:
GH_TOKEN: ${{ github.token }}
10 changes: 6 additions & 4 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"lerna": "2.4.0",
"version": "0.9.31",
"packages": ["packages/*"]
}
"lerna": "2.4.0",
"version": "0.9.32",
"packages": [
"packages/*"
]
}
56 changes: 28 additions & 28 deletions packages/mobx-devtools-mst/package.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
{
"name": "mobx-devtools-mst",
"version": "0.9.30",
"main": "lib/index.js",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-devtools.git"
},
"author": "Andy Kogut",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx/issues"
},
"homepage": "https://mobxjs.github.io/mobx",
"keywords": [
"mobx",
"mobx-state-tree",
"mst",
"devtools"
],
"scripts": {
"build": "cross-env NODE_ENV=production webpack"
},
"peerDependencies": {
"mobx": "^2.2.0 || ^3.0.0 || ^4.0.0 || ^5.0.0",
"mobx-state-tree": "*"
}
}
"name": "mobx-devtools-mst",
"version": "0.9.32",
"main": "lib/index.js",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-devtools.git"
},
"author": "Andy Kogut",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx/issues"
},
"homepage": "https://mobxjs.github.io/mobx",
"keywords": [
"mobx",
"mobx-state-tree",
"mst",
"devtools"
],
"scripts": {
"build": "cross-env NODE_ENV=production webpack"
},
"peerDependencies": {
"mobx": "^2.2.0 || ^3.0.0 || ^4.0.0 || ^5.0.0",
"mobx-state-tree": "*"
}
}
48 changes: 24 additions & 24 deletions packages/mobx-devtools/package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"name": "mobx-devtools",
"version": "0.9.27",
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-devtools.git"
},
"author": "Andy Kogut",
"license": "MIT",
"scripts": {
"build": "webpack"
},
"bin": {
"mobx-devtools": "./bin.js"
},
"bugs": {
"url": "https://github.com/mobxjs/mobx/issues"
},
"homepage": "https://mobxjs.github.io/mobx",
"dependencies": {
"electron": "^11.0.1",
"ip": "^1.1.5",
"ws": "^7.3.1"
}
}
"name": "mobx-devtools",
"version": "0.9.32",
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-devtools.git"
},
"author": "Andy Kogut",
"license": "MIT",
"scripts": {
"build": "webpack"
},
"bin": {
"mobx-devtools": "./bin.js"
},
"bugs": {
"url": "https://github.com/mobxjs/mobx/issues"
},
"homepage": "https://mobxjs.github.io/mobx",
"dependencies": {
"electron": "^11.0.1",
"ip": "^1.1.5",
"ws": "^7.3.1"
}
}
Loading
Loading