Skip to content

Commit fe3e981

Browse files
committed
chore: ember-cli-update-action
ember-cli-update -p @kellyselden/node-template -b @kellyselden/node-template --to 6.9.0
1 parent bae1a6c commit fe3e981

File tree

9 files changed

+276
-237
lines changed

9 files changed

+276
-237
lines changed

.eslintignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 34 deletions
This file was deleted.

.mocharc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ module.exports = {
44
spec: ['test/**/*-test.js'],
55

66
ignore: [
7-
'test/fixtures/**'
8-
]
7+
'test/fixtures/**',
8+
],
99
};

commitlint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict';
22

33
module.exports = {
4-
extends: ['@commitlint/config-conventional']
4+
extends: ['@commitlint/config-conventional'],
55
};

config/ember-cli-update.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
{
1515
"name": "@kellyselden/node-template",
16-
"version": "6.5.2",
16+
"version": "6.9.0",
1717
"blueprints": [
1818
{
1919
"name": "@kellyselden/node-template",

eslint.config.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
'use strict';
2+
3+
const {
4+
defineConfig,
5+
globalIgnores,
6+
} = require('eslint/config');
7+
8+
const mocha = require('eslint-plugin-mocha');
9+
const saneNode = require('eslint-config-sane-node');
10+
11+
module.exports = defineConfig([
12+
saneNode,
13+
{
14+
...mocha.configs.flat.recommended,
15+
files: [
16+
'test/**/*-test.js',
17+
],
18+
rules: {
19+
...mocha.configs.flat.recommended.rules,
20+
'mocha/no-exclusive-tests': 'error',
21+
'mocha/no-empty-description': 'off',
22+
},
23+
},
24+
globalIgnores([
25+
'test/fixtures/',
26+
]),
27+
]);

package.json

Lines changed: 18 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,23 @@
11
{
22
"name": "ember-cli-update-codemods-manifest",
3-
"private": true,
43
"version": "3.0.14",
4+
"private": true,
55
"description": "Master list of codemods and their instructions used by ember-cli-update",
6-
"scripts": {
7-
"lint:git": "commitlint",
8-
"lint:js": "eslint . --ext js,json",
9-
"release": "next release --package-files package.json --bump-files package.json --scripts.precommit \"pnpm install --frozen-lockfile=false && git add pnpm-lock.yaml\" --default-branch main",
10-
"test": "mocha"
6+
"homepage": "https://github.com/ember-cli/ember-cli-update-codemods-manifest#readme",
7+
"bugs": {
8+
"url": "https://github.com/ember-cli/ember-cli-update-codemods-manifest/issues"
119
},
1210
"repository": {
1311
"type": "git",
1412
"url": "git+https://github.com/ember-cli/ember-cli-update-codemods-manifest.git"
1513
},
16-
"author": "Kelly Selden",
1714
"license": "MIT",
18-
"bugs": {
19-
"url": "https://github.com/ember-cli/ember-cli-update-codemods-manifest/issues"
20-
},
21-
"homepage": "https://github.com/ember-cli/ember-cli-update-codemods-manifest#readme",
22-
"engines": {
23-
"node": ">=20.9"
15+
"author": "Kelly Selden",
16+
"scripts": {
17+
"lint:git": "commitlint",
18+
"lint:js": "eslint",
19+
"release": "next release --package-files package.json --bump-files package.json --scripts.precommit \"pnpm install --frozen-lockfile=false && git add pnpm-lock.yaml\" --default-branch main",
20+
"test": "mocha"
2421
},
2522
"devDependencies": {
2623
"@crowdstrike/commitlint": "^8.0.0",
@@ -29,19 +26,18 @@
2926
"ember-addon-codemods-manifest": "",
3027
"ember-app-codemods-manifest": "",
3128
"ember-cli-update": "2.0.1",
32-
"eslint": "^8.57.1",
33-
"eslint-config-sane": "^1.0.2",
34-
"eslint-config-sane-node": "^2.0.0",
35-
"eslint-plugin-json-files": "^5.1.0",
29+
"eslint": "^9.34.0",
30+
"eslint-config-sane-node": "^6.0.0",
3631
"eslint-plugin-mocha": "^10.5.0",
37-
"eslint-plugin-n": "^17.20.0",
38-
"eslint-plugin-prefer-let": "^4.0.0",
3932
"fs-extra": "^11.0.0",
4033
"git-fixtures": "^9.0.0",
41-
"mocha": "^11.7.0",
42-
"mocha-helpers": "^10.0.0",
34+
"mocha": "^11.7.1",
35+
"mocha-helpers": "^10.2.1",
4336
"monorepo-next": "^13.0.0",
44-
"renovate-config-standard": "2.3.0",
37+
"renovate-config-standard": "2.4.2",
4538
"standard-node-template": "7.2.0"
39+
},
40+
"engines": {
41+
"node": ">=20.9"
4642
}
4743
}

0 commit comments

Comments
 (0)