Skip to content

Commit 4569282

Browse files
committed
chore: ember-cli-update-action
ember-cli-update -p @kellyselden/node-template -b @kellyselden/node-template --to 6.8.4
1 parent f3e8a3e commit 4569282

9 files changed

Lines changed: 272 additions & 199 deletions

File tree

.eslintignore

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

.eslintrc.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,36 @@
33
module.exports = {
44
root: true,
55
parserOptions: {
6-
ecmaVersion: 2022
6+
ecmaVersion: 2022,
77
},
88
env: {
9-
es6: true
9+
es6: true,
1010
},
1111
extends: [
12-
'sane-node'
12+
'sane-node',
1313
],
1414
rules: {
1515
// https://github.com/mysticatea/eslint-plugin-node/issues/77,
16-
'node/no-unpublished-require': 'off'
16+
'node/no-unpublished-require': 'off',
1717
},
1818
overrides: [
1919
{
2020
files: [
21-
'test/tests.js'
21+
'test/tests.js',
2222
],
2323
env: {
24-
mocha: true
24+
mocha: true,
2525
},
2626
plugins: [
27-
'mocha'
27+
'mocha',
2828
],
2929
extends: [
30-
'plugin:mocha/recommended'
30+
'plugin:mocha/recommended',
3131
],
3232
rules: {
3333
'mocha/no-exclusive-tests': 'error',
34-
'mocha/no-empty-description': 'off'
35-
}
36-
}
37-
]
34+
'mocha/no-empty-description': 'off',
35+
},
36+
},
37+
],
3838
};

.mocharc.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
'use strict';
22

33
module.exports = {
4+
<<<<<<< HEAD
45
spec: ['test/tests.js']
6+
=======
7+
spec: ['test/**/*-test.js'],
8+
>>>>>>> cbb66f9 (v6.5.2...v6.8.4)
59
};

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.8.4",
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: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,15 @@
2929
"ember-addon-codemods-manifest": "",
3030
"ember-app-codemods-manifest": "",
3131
"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",
32+
"eslint": "^9.34.0",
33+
"eslint-config-sane-node": "^5.0.0",
3634
"eslint-plugin-mocha": "^10.5.0",
37-
"eslint-plugin-n": "^17.20.0",
38-
"eslint-plugin-prefer-let": "^4.0.0",
3935
"fs-extra": "^11.0.0",
4036
"git-fixtures": "^9.0.0",
41-
"mocha": "^11.7.0",
42-
"mocha-helpers": "^10.0.0",
37+
"mocha": "^11.7.1",
38+
"mocha-helpers": "^10.2.1",
4339
"monorepo-next": "^13.0.0",
44-
"renovate-config-standard": "2.3.0",
40+
"renovate-config-standard": "2.4.2",
4541
"standard-node-template": "7.2.0"
4642
}
4743
}

0 commit comments

Comments
 (0)