Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
kunalnagar committed Feb 10, 2024
1 parent 1d1e6b7 commit 7fe82ad
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,5 @@ jobs:
run: yarn nx affected -t build --base=${{ env.NX_BASE }} --head=${{ env.NX_HEAD }}
- name: Version affected packages
run: yarn nx affected -t version --base=${{ env.NX_BASE }} --head=${{ env.NX_HEAD }}
- name: Changelog affected packages
run: yarn nx affected -t changelog --base=${{ env.NX_BASE }} --head=${{ env.NX_HEAD }}
3 changes: 2 additions & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
},
"scripts": {
"build": "rimraf dist && tsc",
"version": "yarn nx release version"
"version": "yarn nx release version",
"changelog": "yarn nx release changelog"
},
"peerDependencies": {
"eslint": ">=7.x",
Expand Down
1 change: 1 addition & 0 deletions packages/jest-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"scripts": {
"build": "rimraf dist && tsc",
"version": "yarn nx release version",
"changelog": "yarn nx release changelog",
"lint": "eslint src/ --ext .ts,.tsx --max-warnings 0",
"lint:fix": "eslint --fix src/ --ext .ts,.tsx --max-warnings 0",
"test:watch": "jest --watch"
Expand Down
1 change: 1 addition & 0 deletions packages/rest-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"scripts": {
"build": "rimraf dist && tsc",
"version": "yarn nx release version",
"changelog": "yarn nx release changelog",
"lint": "eslint src/ --ext .ts,.tsx --max-warnings 0",
"test:watch": "jest --watch"
}
Expand Down
3 changes: 2 additions & 1 deletion packages/tsconfig/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"react-library.json"
],
"scripts": {
"version": "yarn nx release version"
"version": "yarn nx release version",
"changelog": "yarn nx release changelog"
}
}

0 comments on commit 7fe82ad

Please sign in to comment.