Skip to content
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
5 changes: 0 additions & 5 deletions .eslintignore

This file was deleted.

34 changes: 0 additions & 34 deletions .eslintrc.js

This file was deleted.

4 changes: 2 additions & 2 deletions .mocharc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ module.exports = {
spec: ['test/**/*-test.js'],

ignore: [
'test/fixtures/**'
]
'test/fixtures/**',
],
};
2 changes: 1 addition & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';

module.exports = {
extends: ['@commitlint/config-conventional']
extends: ['@commitlint/config-conventional'],
};
2 changes: 1 addition & 1 deletion config/ember-cli-update.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
{
"name": "@kellyselden/node-template",
"version": "6.5.2",
"version": "6.9.0",
"blueprints": [
{
"name": "@kellyselden/node-template",
Expand Down
27 changes: 27 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
'use strict';

const {
defineConfig,
globalIgnores,
} = require('eslint/config');

const mocha = require('eslint-plugin-mocha');
const saneNode = require('eslint-config-sane-node');

module.exports = defineConfig([
saneNode,
{
...mocha.configs.flat.recommended,
files: [
'test/**/*-test.js',
],
rules: {
...mocha.configs.flat.recommended.rules,
'mocha/no-exclusive-tests': 'error',
'mocha/no-empty-description': 'off',
},
},
globalIgnores([
'test/fixtures/',
]),
]);
42 changes: 19 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,47 +1,43 @@
{
"name": "ember-cli-update-codemods-manifest",
"private": true,
"version": "3.0.14",
"private": true,
"description": "Master list of codemods and their instructions used by ember-cli-update",
"scripts": {
"lint:git": "commitlint",
"lint:js": "eslint . --ext js,json",
"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",
"test": "mocha"
"homepage": "https://github.com/ember-cli/ember-cli-update-codemods-manifest#readme",
"bugs": {
"url": "https://github.com/ember-cli/ember-cli-update-codemods-manifest/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-cli/ember-cli-update-codemods-manifest.git"
},
"author": "Kelly Selden",
"license": "MIT",
"bugs": {
"url": "https://github.com/ember-cli/ember-cli-update-codemods-manifest/issues"
},
"homepage": "https://github.com/ember-cli/ember-cli-update-codemods-manifest#readme",
"engines": {
"node": ">=20.9"
"author": "Kelly Selden",
"scripts": {
"lint:git": "commitlint",
"lint:js": "eslint",
"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",
"test": "mocha"
},
"devDependencies": {
"@crowdstrike/commitlint": "^8.0.0",
"@kellyselden/node-template": "6.5.2",
"@kellyselden/node-template": "6.9.0",
"chai": "^4.5.0",
"ember-addon-codemods-manifest": "",
"ember-app-codemods-manifest": "",
"ember-cli-update": "2.0.1",
"eslint": "^8.57.1",
"eslint-config-sane": "^1.0.2",
"eslint-config-sane-node": "^2.0.0",
"eslint-plugin-json-files": "^5.1.0",
"eslint": "^9.34.0",
"eslint-config-sane-node": "^6.0.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.20.0",
"eslint-plugin-prefer-let": "^4.0.0",
"fs-extra": "^11.0.0",
"git-fixtures": "^9.0.0",
"mocha": "^11.7.0",
"mocha-helpers": "^10.0.0",
"mocha": "^11.7.1",
"mocha-helpers": "^10.2.1",
"monorepo-next": "^13.0.0",
"renovate-config-standard": "2.3.0",
"renovate-config-standard": "2.4.2",
"standard-node-template": "7.2.0"
},
"engines": {
"node": ">=20.9"
}
}
Loading
Loading