Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated dependencies #67

Merged
merged 4 commits into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 [email protected]:<your GitHub handle>/ember-codemod-v1-to-v2.git
git clone [email protected]:<your-github-handle>/ember-codemod-v1-to-v2.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>
Expand Down
37 changes: 19 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,41 +28,42 @@
],
"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/blueprints": "^1.0.0",
"@codemod-utils/files": "^1.0.0",
"@codemod-utils/json": "^1.0.0",
"@codemod-utils/blueprints": "^1.1.0",
"@codemod-utils/files": "^1.1.0",
"@codemod-utils/json": "^1.1.1",
"strip-json-comments": "^5.0.1",
"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 @@ -81,7 +82,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"
}
}
}
Loading