Skip to content

Commit b7bc691

Browse files
authored
Updated dependencies (#67)
* chore: Updated dependencies * chore: Updated dependencies * chore: Remove unionize (deprecated) * chore: Downstreamed changes from @codemod-utils/[email protected] --------- Co-authored-by: ijlee2 <[email protected]>
1 parent 3adb978 commit b7bc691

File tree

5 files changed

+525
-501
lines changed

5 files changed

+525
-501
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Here are some guidelines to help you and everyone else.
1414
1. Fork and clone this repo.
1515

1616
```sh
17-
git clone [email protected]:<your GitHub handle>/ember-codemod-v1-to-v2.git
17+
git clone [email protected]:<your-github-handle>/ember-codemod-v1-to-v2.git
1818
```
1919

2020
1. Change directory.
@@ -70,10 +70,10 @@ Here are some guidelines to help you and everyone else.
7070

7171
1. Generate a [personal access token](https://github.com/settings/tokens/) in GitHub, with default values for scopes (none selected).
7272

73-
1. Run the `changelog` script. This generates a text that you can add to `CHANGELOG.md`.
73+
1. Run the `release:changelog` script. This generates a text that you can add to `CHANGELOG.md`.
7474

7575
```sh
76-
GITHUB_AUTH=<YOUR_PERSONAL_ACCESS_TOKEN> pnpm changelog
76+
GITHUB_AUTH=<YOUR_PERSONAL_ACCESS_TOKEN> pnpm release:changelog
7777
```
7878

7979
1. The package follows [semantic versioning](https://semver.org/). Update the version in `package.json` accordingly.
@@ -83,7 +83,7 @@ Here are some guidelines to help you and everyone else.
8383
1. Publish the package.
8484

8585
```sh
86-
pnpm publish
86+
pnpm release:package
8787
```
8888

8989
</details>

package.json

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -28,41 +28,42 @@
2828
],
2929
"scripts": {
3030
"build": "./build.sh --production",
31-
"changelog": "lerna-changelog",
3231
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
3332
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
3433
"lint:js": "eslint . --cache",
3534
"lint:js:fix": "eslint . --fix",
3635
"lint:types": "tsc --noEmit",
3736
"prepare": "pnpm build",
37+
"release:changelog": "lerna-changelog",
38+
"release:publish": "pnpm publish",
3839
"test": "./build.sh --test && mt dist-for-testing --quiet"
3940
},
4041
"dependencies": {
41-
"@codemod-utils/blueprints": "^1.0.0",
42-
"@codemod-utils/files": "^1.0.0",
43-
"@codemod-utils/json": "^1.0.0",
42+
"@codemod-utils/blueprints": "^1.1.0",
43+
"@codemod-utils/files": "^1.1.0",
44+
"@codemod-utils/json": "^1.1.1",
4445
"strip-json-comments": "^5.0.1",
4546
"yargs": "^17.7.2"
4647
},
4748
"devDependencies": {
48-
"@babel/core": "^7.22.17",
49-
"@codemod-utils/tests": "^1.0.0",
49+
"@babel/core": "^7.23.2",
50+
"@codemod-utils/tests": "^1.1.1",
5051
"@sondr3/minitest": "^0.1.2",
5152
"@tsconfig/node18": "^18.2.2",
5253
"@tsconfig/strictest": "^2.0.2",
53-
"@types/node": "^18.17.15",
54-
"@types/yargs": "^17.0.24",
55-
"@typescript-eslint/eslint-plugin": "^6.7.0",
56-
"@typescript-eslint/parser": "^6.7.0",
57-
"concurrently": "^8.2.1",
58-
"eslint": "^8.49.0",
54+
"@types/node": "^18.18.7",
55+
"@types/yargs": "^17.0.29",
56+
"@typescript-eslint/eslint-plugin": "^6.9.1",
57+
"@typescript-eslint/parser": "^6.9.1",
58+
"concurrently": "^8.2.2",
59+
"eslint": "^8.52.0",
5960
"eslint-config-prettier": "^9.0.0",
60-
"eslint-import-resolver-typescript": "^3.6.0",
61-
"eslint-plugin-import": "^2.28.1",
62-
"eslint-plugin-n": "^16.1.0",
63-
"eslint-plugin-prettier": "^5.0.0",
61+
"eslint-import-resolver-typescript": "^3.6.1",
62+
"eslint-plugin-import": "^2.29.0",
63+
"eslint-plugin-n": "^16.2.0",
64+
"eslint-plugin-prettier": "^5.0.1",
6465
"eslint-plugin-simple-import-sort": "^10.0.0",
65-
"eslint-plugin-typescript-sort-keys": "^3.0.0",
66+
"eslint-plugin-typescript-sort-keys": "^3.1.0",
6667
"lerna-changelog": "^2.2.0",
6768
"prettier": "^3.0.3",
6869
"typescript": "^5.2.2"
@@ -81,7 +82,7 @@
8182
},
8283
"pnpm": {
8384
"overrides": {
84-
"eslint-plugin-import@2.28.1>tsconfig-paths": "^4.2.0"
85+
"eslint-plugin-import@2.29.0>tsconfig-paths": "^4.2.0"
8586
}
8687
}
8788
}

0 commit comments

Comments
 (0)