Skip to content

Commit

Permalink
fix: add angular-changelog and check for fuels-ts package.json (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
QuinnLee authored Jun 10, 2022
1 parent 3caba86 commit 3d124a4
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"conventional-changelog-angular": "^5.0.13",
"conventional-recommended-bump": "^6.1.0",
"dotenv": "^9.0.2",
"eslint": "^8.4.1",
Expand Down
37 changes: 36 additions & 1 deletion pnpm-lock.yaml

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

4 changes: 3 additions & 1 deletion scripts/utils/changePackages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ export async function changeAllPkgJSON(version: string) {
const spinner = ora('Bumping versions').start();

for (const dir of dirs) {
changePkgJsonVersion(`./packages/${dir}`, version);
if (dir.includes('fuels-ts')) {
changePkgJsonVersion(`./packages/${dir}`, version);
}
}

spinner.succeed();
Expand Down

0 comments on commit 3d124a4

Please sign in to comment.