Automated versioning using ChangeSets (#442)
* feat: install changesets * chore: yarn changeset init * chore: add l2geth to the workspace so it can be seen by changeset * ci: add changeset release PR github action https://github.com/changesets/action * chore: set l2geth version to 0.2.0
Showing
.changeset/README.md
0 → 100644
.changeset/config.json
0 → 100644
l2geth/package.json
0 → 100644
| ... | ... | @@ -4,6 +4,7 @@ |
| "license": "MIT", | ||
| "workspaces": [ | ||
| "packages/*", | ||
| "l2geth", | ||
| "integration-tests" | ||
| ], | ||
| "private": true, | ||
| ... | ... | @@ -11,12 +12,15 @@ |
| "lerna": "^4.0.0" | ||
| }, | ||
| "scripts": { | ||
| "clean": "yarn lerna run clean", | ||
| "build": "yarn lerna run build", | ||
| "test": "yarn lerna run test --parallel", | ||
| "test:ci": "yarn lerna run test --parallel --since origin/master", | ||
| "lint": "yarn lerna run lint", | ||
| "lint:ci": "yarn lerna run lint --parallel --since origin/master", | ||
| "lint:fix": "yarn lerna run lint:fix" | ||
| "clean": "yarn lerna run clean", | ||
| "build": "yarn lerna run build", | ||
| "test": "yarn lerna run test --parallel", | ||
| "test:ci": "yarn lerna run test --parallel --since origin/master", | ||
| "lint": "yarn lerna run lint", | ||
| "lint:ci": "yarn lerna run lint --parallel --since origin/master", | ||
| "lint:fix": "yarn lerna run lint:fix" | ||
| }, | ||
| "dependencies": { | ||
| "@changesets/cli": "^2.16.0" | ||
| } | ||
| } |
This diff is collapsed.
Please register or sign in to comment