Skip to content

Commit

Permalink
Updated dependencies (#4)
Browse files Browse the repository at this point in the history
* chore: Updated dependencies

* chore: Added lockfile

* chore: Downstreamed changes from @codemod-utils/cli@1.1.0

---------

Co-authored-by: ijlee2 <ijlee2@users.noreply.github.com>
  • Loading branch information
ijlee2 and ijlee2 committed Oct 31, 2023
1 parent ebe3d69 commit da0ca4f
Show file tree
Hide file tree
Showing 3 changed files with 521 additions and 502 deletions.
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Here are some guidelines to help you and everyone else.
1. Fork and clone this repo.

```sh
git clone git@github.com:<your GitHub handle>/ember-codemod-rename-test-modules.git
git clone git@github.com:<your-github-handle>/ember-codemod-rename-test-modules.git
```

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

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

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

```sh
GITHUB_AUTH=<YOUR_PERSONAL_ACCESS_TOKEN> pnpm changelog
GITHUB_AUTH=<YOUR_PERSONAL_ACCESS_TOKEN> pnpm release:changelog
```

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

```sh
pnpm publish
pnpm release:package
```

</details>
35 changes: 18 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,39 +24,40 @@
],
"scripts": {
"build": "./build.sh --production",
"changelog": "lerna-changelog",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:types": "tsc --noEmit",
"prepare": "pnpm build",
"release:changelog": "lerna-changelog",
"release:publish": "pnpm publish",
"test": "./build.sh --test && mt dist-for-testing --quiet"
},
"dependencies": {
"@codemod-utils/ast-javascript": "^1.0.0",
"@codemod-utils/files": "^1.0.0",
"@codemod-utils/ast-javascript": "^1.2.0",
"@codemod-utils/files": "^1.1.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.22.17",
"@codemod-utils/tests": "^1.0.0",
"@babel/core": "^7.23.2",
"@codemod-utils/tests": "^1.1.1",
"@sondr3/minitest": "^0.1.2",
"@tsconfig/node18": "^18.2.2",
"@tsconfig/strictest": "^2.0.2",
"@types/node": "^18.17.15",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"concurrently": "^8.2.1",
"eslint": "^8.49.0",
"@types/node": "^18.18.7",
"@types/yargs": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"concurrently": "^8.2.2",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-typescript-sort-keys": "^3.0.0",
"eslint-plugin-typescript-sort-keys": "^3.1.0",
"lerna-changelog": "^2.2.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
Expand All @@ -75,7 +76,7 @@
},
"pnpm": {
"overrides": {
"eslint-plugin-import@2.28.1>tsconfig-paths": "^4.2.0"
"eslint-plugin-import@2.29.0>tsconfig-paths": "^4.2.0"
}
}
}

0 comments on commit da0ca4f

Please sign in to comment.