diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 1912d905..00000000 --- a/.eslintignore +++ /dev/null @@ -1,5 +0,0 @@ -!.* - -/node_modules/ - -/test/fixtures/ diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 767115d8..00000000 --- a/.eslintrc.js +++ /dev/null @@ -1,34 +0,0 @@ -'use strict'; - -module.exports = { - root: true, - parserOptions: { - ecmaVersion: 2022 - }, - env: { - es6: true - }, - extends: [ - 'sane-node' - ], - overrides: [ - { - files: [ - 'test/**/*-test.js' - ], - env: { - mocha: true - }, - plugins: [ - 'mocha' - ], - extends: [ - 'plugin:mocha/recommended' - ], - rules: { - 'mocha/no-exclusive-tests': 'error', - 'mocha/no-empty-description': 'off' - } - } - ] -}; diff --git a/.mocharc.js b/.mocharc.js index f110f16d..c8529e1a 100644 --- a/.mocharc.js +++ b/.mocharc.js @@ -4,6 +4,6 @@ module.exports = { spec: ['test/**/*-test.js'], ignore: [ - 'test/fixtures/**' - ] + 'test/fixtures/**', + ], }; diff --git a/commitlint.config.js b/commitlint.config.js index f581ab03..84dab2e2 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1,5 +1,5 @@ 'use strict'; module.exports = { - extends: ['@commitlint/config-conventional'] + extends: ['@commitlint/config-conventional'], }; diff --git a/config/ember-cli-update.json b/config/ember-cli-update.json index 2da1b371..dfbd1687 100644 --- a/config/ember-cli-update.json +++ b/config/ember-cli-update.json @@ -13,7 +13,7 @@ }, { "name": "@kellyselden/node-template", - "version": "6.5.2", + "version": "6.9.0", "blueprints": [ { "name": "@kellyselden/node-template", diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 00000000..07a404ab --- /dev/null +++ b/eslint.config.js @@ -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/', + ]), +]); diff --git a/package.json b/package.json index d67e85a5..3417a64a 100644 --- a/package.json +++ b/package.json @@ -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" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index eb28f5b0..47cf523f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12,41 +12,29 @@ importers: specifier: ^8.0.0 version: 8.0.3(@types/node@24.1.0)(commitlint@7.6.1)(typescript@5.9.2) '@kellyselden/node-template': - specifier: 6.5.2 - version: 6.5.2 + specifier: 6.9.0 + version: 6.9.0 chai: specifier: ^4.5.0 version: 4.5.0 ember-addon-codemods-manifest: specifier: '' - version: link:packages/addon + version: 1.0.11 ember-app-codemods-manifest: specifier: '' - version: link:packages/app + version: 1.0.10 ember-cli-update: specifier: 2.0.1 version: 2.0.1 eslint: - specifier: ^8.57.1 - version: 8.57.1 - eslint-config-sane: - specifier: ^1.0.2 - version: 1.0.2(eslint-plugin-prefer-let@4.0.0)(eslint@8.57.1) + specifier: ^9.34.0 + version: 9.35.0(jiti@2.5.1) eslint-config-sane-node: - specifier: ^2.0.0 - version: 2.0.0(eslint-config-sane@1.0.2)(eslint-plugin-json-files@5.1.0)(eslint-plugin-n@17.21.3) - eslint-plugin-json-files: - specifier: ^5.1.0 - version: 5.1.0(eslint@8.57.1) + specifier: ^6.0.0 + version: 6.0.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2) eslint-plugin-mocha: specifier: ^10.5.0 - version: 10.5.0(eslint@8.57.1) - eslint-plugin-n: - specifier: ^17.20.0 - version: 17.21.3(eslint@8.57.1)(typescript@5.9.2) - eslint-plugin-prefer-let: - specifier: ^4.0.0 - version: 4.0.0 + version: 10.5.0(eslint@9.35.0(jiti@2.5.1)) fs-extra: specifier: ^11.0.0 version: 11.3.0 @@ -54,17 +42,17 @@ importers: specifier: ^9.0.0 version: 9.1.0 mocha: - specifier: ^11.7.0 + specifier: ^11.7.1 version: 11.7.1 mocha-helpers: - specifier: ^10.0.0 - version: 10.2.0 + specifier: ^10.2.1 + version: 10.2.1 monorepo-next: specifier: ^13.0.0 version: 13.0.0(@types/node@24.1.0) renovate-config-standard: - specifier: 2.3.0 - version: 2.3.0 + specifier: 2.4.2 + version: 2.4.2 standard-node-template: specifier: 7.2.0 version: 7.2.0 @@ -246,25 +234,54 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@eslint-community/eslint-utils@4.8.0': + resolution: {integrity: sha512-MJQFqrZgcW0UNYLGOuQpey/oTN59vyWwplvCGZztn1cKz9agZPPYpJB7h2OMmuu7VLqkvEjN8feFZJmxNF9D+Q==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + '@eslint-community/regexpp@4.12.1': resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - '@eslint/eslintrc@2.1.4': - resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@eslint/config-array@0.21.0': + resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@8.57.1': - resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@eslint/config-helpers@0.3.1': + resolution: {integrity: sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.15.2': + resolution: {integrity: sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/eslintrc@3.3.1': + resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/js@9.35.0': + resolution: {integrity: sha512-30iXE9whjlILfWobBkNerJo+TXYsgVM5ERQwMcMKCHckHflCmf7wXDAHlARoWnh0s1U72WqlbeyE7iAcCzuCPw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.6': + resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.3.5': + resolution: {integrity: sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@gar/promisify@1.1.3': resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - '@humanwhocodes/config-array@0.13.0': - resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==} - engines: {node: '>=10.10.0'} - deprecated: Use @eslint/config-array instead + '@humanfs/core@0.19.1': + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.7': + resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==} + engines: {node: '>=18.18.0'} '@humanwhocodes/module-importer@1.0.1': resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} @@ -274,9 +291,9 @@ packages: resolution: {integrity: sha512-RE815I4arJFtt+FVeU1Tgp9/Xvecacji8w/V6XtXsWWH/wz/eNkNbhb+ny/+PlVZjV0rxQpRSQKNKE3lcktHEA==} engines: {node: '>=10.10.0'} - '@humanwhocodes/object-schema@2.0.3': - resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} - deprecated: Use @eslint/object-schema instead + '@humanwhocodes/retry@0.4.3': + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} + engines: {node: '>=18.18'} '@hutson/parse-repository-url@3.0.2': resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} @@ -426,8 +443,8 @@ packages: '@isaacs/string-locale-compare@1.1.0': resolution: {integrity: sha512-SQ7Kzhh9+D+ZW9MA0zkYv3VXhIDNx+LzM6EJ+/65I3QY+enU6Itte7E5XX7EWrqLW2FN4n06GWzBnPoC3th2aQ==} - '@kellyselden/node-template@6.5.2': - resolution: {integrity: sha512-33RlZP/aBbMJQp884sX4R9VxxsOPTsTnZIvfLFxE7G7Thili8XkLTfSVGf4oCUDvyaVDhCvXIYTZfLt7m6c7oA==} + '@kellyselden/node-template@6.9.0': + resolution: {integrity: sha512-6VoRfF4oEjY4TU1BnvHKqF2EUolUrJA4/ecyy/YYe4zOj0VrNRK8q/CtqFArkJv1AdZpSZUDcG0vmlAKNKEQ1w==} engines: {node: '>=20.9'} '@marionebl/sander@0.6.1': @@ -591,6 +608,9 @@ packages: '@types/conventional-commits-parser@5.0.1': resolution: {integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==} + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + '@types/fs-extra@8.1.5': resolution: {integrity: sha512-0dzKcwO+S8s2kuF5Z9oUWatQJj5Uq/iqphEtE3GQJVRRYm/tD1LglU2UnXi2A8jLq5umkGouOXOR9y0n613ZwQ==} @@ -604,6 +624,9 @@ packages: resolution: {integrity: sha512-00UxlRaIUvYm4R4W9WYkN8/J+kV8fmOQ7okeH6YFtGWFMt3odD45tpG5yA5wnL7HE6lLgjaTW5n14ju2hl2NNA==} deprecated: This is a stub types definition. glob provides its own type definitions, so you do not need this installed. + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + '@types/keyv@3.1.4': resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} @@ -632,9 +655,6 @@ packages: '@types/rimraf@3.0.2': resolution: {integrity: sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==} - '@ungap/structured-clone@1.3.0': - resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} - JSONStream@1.3.5: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true @@ -1290,10 +1310,6 @@ packages: resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} engines: {node: '>=8'} - doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} - dot-prop@3.0.0: resolution: {integrity: sha512-k4ELWeEU3uCcwub7+dWydqQBRjAjkV9L33HjVRG5Xo2QybI6ja/v+4W73SRi8ubCqJz0l9XsTP1NbewfyqaSlw==} engines: {node: '>=0.10.0'} @@ -1316,6 +1332,12 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + ember-addon-codemods-manifest@1.0.11: + resolution: {integrity: sha512-i1h7jaxMTtFzAl83ufS73tKbnOzEXCLcF7dFVsnn1uNyJVRyESZpWGQR+oc3OOQCbNCxECFVocdkfm2ZqVvozg==} + + ember-app-codemods-manifest@1.0.10: + resolution: {integrity: sha512-SCLxLE1gWhcl6QF+C+oGxR+7j4/l5k47jX5R42Lv8OGIdtF7iz9zu7l4mExXhQnkpYedp+P+IfP1n8/fGtMa5A==} + ember-cli-update@2.0.1: resolution: {integrity: sha512-xtN9quJ5RtY5O+eQrtXvMhkOz/OsZr8I4U5wM0din5i9jz2KxwUHKGdd7nklQggoF1uwmW3Pt7zKsjnxsEB/XA==} engines: {node: '>=14.15'} @@ -1392,18 +1414,13 @@ packages: peerDependencies: eslint: '>=6.0.0' - eslint-config-sane-node@2.0.0: - resolution: {integrity: sha512-stBuWRo5GRb1AAt8Nc31hilMDoBwVrElnZmk+dSWyicyUdPY5GGL5oTis5KsVWVrMKVTC8kjXYbbbxF8hyDXkA==} - peerDependencies: - eslint-config-sane: '>=1' - eslint-plugin-json-files: '>=0.8' - eslint-plugin-n: '>=15.1' + eslint-config-sane-node@6.0.0: + resolution: {integrity: sha512-YQgc+24E+DCjpj2qp0Mmpjl9OvCgh2Ll0ADnZpE/D5ecfm8w3gZfBEsdEgXXIs9wokpb/6vswLRdfwigN6hzTQ==} + engines: {node: '>=20.9'} - eslint-config-sane@1.0.2: - resolution: {integrity: sha512-eEOslphdCDkYC1MFA1H9Ag7CuEAWME0nblGdy6I2iUXHiGjM2oX2YjBOrEHGQtgZjJ9h0qYehJ8gf7ulUO9xng==} - peerDependencies: - eslint: '>=5' - eslint-plugin-prefer-let: '>=1' + eslint-config-sane@4.0.0: + resolution: {integrity: sha512-ZPX1LVk2i2Z+vIN54aQeohhnboUS8NCuHbSutpX9kA4+JNhFZJ/dboVnKpkgHQqN2iM2uRQfYgeFaLgoFYjwpw==} + engines: {node: '>=20.9'} eslint-plugin-es-x@7.8.0: resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==} @@ -1433,9 +1450,9 @@ packages: resolution: {integrity: sha512-X4ep5PMO1320HKaNC9DM5+p6XvOhwv+RcqGjhv3aiw9iAtHhiFtdIUB5l0Zya0iM22ys2BGKzrNI9Xpw/ZHooQ==} engines: {node: '>=0.10.0'} - eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-scope@8.4.0: + resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} eslint-utils@3.0.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} @@ -1451,15 +1468,23 @@ packages: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - eslint@8.57.1: - resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. + eslint-visitor-keys@4.2.1: + resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint@9.35.0: + resolution: {integrity: sha512-QePbBFMJFjgmlE+cXAlbHZbHpdFVS2E/6vzCy7aKlebddvl1vadiC4JFV5u/wqTkNUwEV8WrQi257jf5f06hrg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true - espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + espree@10.4.0: + resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} esprima@4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} @@ -1535,9 +1560,9 @@ packages: resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==} engines: {node: '>=18'} - file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} fill-range@7.1.1: resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} @@ -1575,9 +1600,9 @@ packages: resolution: {integrity: sha512-PFOf/DT9/t2NCiVyiQ5cBMJtGZfWh3aeOV8XVqQQOPBlTv8r6l0k75/hm36JOaiJlrWFk/8aYFyOKAvOkrkjrw==} engines: {node: 14.* || >= 16.*} - flat-cache@3.2.0: - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} - engines: {node: ^10.12.0 || >=12.0.0} + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} flat@5.0.2: resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} @@ -1762,10 +1787,18 @@ packages: resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} engines: {node: '>=8'} + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + globals@15.15.0: resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==} engines: {node: '>=18'} + globals@16.3.0: + resolution: {integrity: sha512-bqWEnJ1Nt3neqx2q5SFfGS8r/ahumIakg3HcwtNlrVlwXIeNumWn/c7Pn/wKzGhf6SaW6H6uWXLqC30STCMchQ==} + engines: {node: '>=18'} + globby@10.0.0: resolution: {integrity: sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==} engines: {node: '>=8'} @@ -1784,9 +1817,6 @@ packages: graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - handlebars@4.7.8: resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} engines: {node: '>=0.4.7'} @@ -2493,8 +2523,8 @@ packages: engines: {node: '>=10'} hasBin: true - mocha-helpers@10.2.0: - resolution: {integrity: sha512-NqN6odjMs6kmXYMtHUc6C0rqYAlDTdLD+w9/ISsHb7ak+wQ6CHe5kfLvuHG19s6DrlUdD1VFiGunWqOZtV+zKw==} + mocha-helpers@10.2.1: + resolution: {integrity: sha512-yfWDniMNr0QqbYqIaWhArRJXvn8JIo34fTW+dIZdjsOEu6B4votpaaKFK0YPb0Q9/TBLiUhONCFXHNkm3ZW+mA==} engines: {node: '>=20.9'} mocha@11.7.1: @@ -3024,8 +3054,8 @@ packages: resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} engines: {node: '>=8'} - renovate-config-standard@2.3.0: - resolution: {integrity: sha512-PI67DLX40491lJ0cmvh4KHW1HxFbCLCM4vPmWHbPOsxmGnT+XF98IbBpW+q9VTU49rSXi+GzUXSn1xsNj+4sYg==} + renovate-config-standard@2.4.2: + resolution: {integrity: sha512-eLVE5540NauzBag1BGISPMdX4LaG0ju9EnmjP5ha27kKbbgQmijnDoQZVUBSimPUxG2vcjkXuJ4j8b8YN+uxNA==} require-directory@2.1.1: resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} @@ -3348,9 +3378,6 @@ packages: resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==} engines: {node: '>=8'} - text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - three-way-merger@0.6.3: resolution: {integrity: sha512-sjXsAqIiluhRBvbXfri1dBI5NSqfl/fe8R3QypAR15qeMRrsBodrGeROBtve2BQnxB9Ub6Fs0e/H1OZdaELD7A==} @@ -3390,6 +3417,10 @@ packages: resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} engines: {node: '>=14.14'} + tmp@0.2.5: + resolution: {integrity: sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==} + engines: {node: '>=14.14'} + to-readable-stream@1.0.0: resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} engines: {node: '>=6'} @@ -3737,8 +3768,8 @@ snapshots: '@asamuzakjp/css-color@3.2.0': dependencies: - '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5)(@csstools/css-tokenizer@3.0.4) - '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5)(@csstools/css-tokenizer@3.0.4) + '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) + '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 lru-cache: 10.4.3 @@ -3836,7 +3867,7 @@ snapshots: '@commitlint/types': 19.8.1 chalk: 5.4.1 cosmiconfig: 9.0.0(typescript@5.9.2) - cosmiconfig-typescript-loader: 6.1.0(@types/node@24.1.0)(cosmiconfig@9.0.0)(typescript@5.9.2) + cosmiconfig-typescript-loader: 6.1.0(@types/node@24.1.0)(cosmiconfig@9.0.0(typescript@5.9.2))(typescript@5.9.2) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -3951,15 +3982,15 @@ snapshots: '@csstools/color-helpers@5.0.2': {} - '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5)(@csstools/css-tokenizer@3.0.4)': + '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': dependencies: '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 - '@csstools/css-color-parser@3.0.10(@csstools/css-parser-algorithms@3.0.5)(@csstools/css-tokenizer@3.0.4)': + '@csstools/css-color-parser@3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)': dependencies: '@csstools/color-helpers': 5.0.2 - '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5)(@csstools/css-tokenizer@3.0.4) + '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-tokenizer': 3.0.4 @@ -3969,19 +4000,38 @@ snapshots: '@csstools/css-tokenizer@3.0.4': {} - '@eslint-community/eslint-utils@4.7.0(eslint@8.57.1)': + '@eslint-community/eslint-utils@4.7.0(eslint@9.35.0(jiti@2.5.1))': dependencies: - eslint: 8.57.1 + eslint: 9.35.0(jiti@2.5.1) + eslint-visitor-keys: 3.4.3 + + '@eslint-community/eslint-utils@4.8.0(eslint@9.35.0(jiti@2.5.1))': + dependencies: + eslint: 9.35.0(jiti@2.5.1) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.1': {} - '@eslint/eslintrc@2.1.4': + '@eslint/config-array@0.21.0': + dependencies: + '@eslint/object-schema': 2.1.6 + debug: 4.4.1(supports-color@8.1.1) + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/config-helpers@0.3.1': {} + + '@eslint/core@0.15.2': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/eslintrc@3.3.1': dependencies: ajv: 6.12.6 debug: 4.4.1(supports-color@8.1.1) - espree: 9.6.1 - globals: 13.24.0 + espree: 10.4.0 + globals: 14.0.0 ignore: 5.3.2 import-fresh: 3.3.1 js-yaml: 4.1.0 @@ -3990,23 +4040,29 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@8.57.1': {} + '@eslint/js@9.35.0': {} + + '@eslint/object-schema@2.1.6': {} + + '@eslint/plugin-kit@0.3.5': + dependencies: + '@eslint/core': 0.15.2 + levn: 0.4.1 '@gar/promisify@1.1.3': {} - '@humanwhocodes/config-array@0.13.0': + '@humanfs/core@0.19.1': {} + + '@humanfs/node@0.16.7': dependencies: - '@humanwhocodes/object-schema': 2.0.3 - debug: 4.4.1(supports-color@8.1.1) - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.4.3 '@humanwhocodes/module-importer@1.0.1': {} '@humanwhocodes/momoa@2.0.4': {} - '@humanwhocodes/object-schema@2.0.3': {} + '@humanwhocodes/retry@0.4.3': {} '@hutson/parse-repository-url@3.0.2': {} @@ -4017,41 +4073,46 @@ snapshots: '@inquirer/core': 10.1.15(@types/node@24.1.0) '@inquirer/figures': 1.0.13 '@inquirer/type': 3.0.8(@types/node@24.1.0) - '@types/node': 24.1.0 ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 24.1.0 '@inquirer/confirm@5.1.14(@types/node@24.1.0)': dependencies: '@inquirer/core': 10.1.15(@types/node@24.1.0) '@inquirer/type': 3.0.8(@types/node@24.1.0) + optionalDependencies: '@types/node': 24.1.0 '@inquirer/core@10.1.15(@types/node@24.1.0)': dependencies: '@inquirer/figures': 1.0.13 '@inquirer/type': 3.0.8(@types/node@24.1.0) - '@types/node': 24.1.0 ansi-escapes: 4.3.2 cli-width: 4.1.0 mute-stream: 2.0.0 signal-exit: 4.1.0 wrap-ansi: 6.2.0 yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 24.1.0 '@inquirer/editor@4.2.15(@types/node@24.1.0)': dependencies: '@inquirer/core': 10.1.15(@types/node@24.1.0) '@inquirer/type': 3.0.8(@types/node@24.1.0) - '@types/node': 24.1.0 external-editor: 3.1.0 + optionalDependencies: + '@types/node': 24.1.0 '@inquirer/expand@4.0.17(@types/node@24.1.0)': dependencies: '@inquirer/core': 10.1.15(@types/node@24.1.0) '@inquirer/type': 3.0.8(@types/node@24.1.0) - '@types/node': 24.1.0 yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 24.1.0 '@inquirer/figures@1.0.13': {} @@ -4059,20 +4120,23 @@ snapshots: dependencies: '@inquirer/core': 10.1.15(@types/node@24.1.0) '@inquirer/type': 3.0.8(@types/node@24.1.0) + optionalDependencies: '@types/node': 24.1.0 '@inquirer/number@3.0.17(@types/node@24.1.0)': dependencies: '@inquirer/core': 10.1.15(@types/node@24.1.0) '@inquirer/type': 3.0.8(@types/node@24.1.0) + optionalDependencies: '@types/node': 24.1.0 '@inquirer/password@4.0.17(@types/node@24.1.0)': dependencies: '@inquirer/core': 10.1.15(@types/node@24.1.0) '@inquirer/type': 3.0.8(@types/node@24.1.0) - '@types/node': 24.1.0 ansi-escapes: 4.3.2 + optionalDependencies: + '@types/node': 24.1.0 '@inquirer/prompts@7.8.0(@types/node@24.1.0)': dependencies: @@ -4086,34 +4150,38 @@ snapshots: '@inquirer/rawlist': 4.1.5(@types/node@24.1.0) '@inquirer/search': 3.1.0(@types/node@24.1.0) '@inquirer/select': 4.3.1(@types/node@24.1.0) + optionalDependencies: '@types/node': 24.1.0 '@inquirer/rawlist@4.1.5(@types/node@24.1.0)': dependencies: '@inquirer/core': 10.1.15(@types/node@24.1.0) '@inquirer/type': 3.0.8(@types/node@24.1.0) - '@types/node': 24.1.0 yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 24.1.0 '@inquirer/search@3.1.0(@types/node@24.1.0)': dependencies: '@inquirer/core': 10.1.15(@types/node@24.1.0) '@inquirer/figures': 1.0.13 '@inquirer/type': 3.0.8(@types/node@24.1.0) - '@types/node': 24.1.0 yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 24.1.0 '@inquirer/select@4.3.1(@types/node@24.1.0)': dependencies: '@inquirer/core': 10.1.15(@types/node@24.1.0) '@inquirer/figures': 1.0.13 '@inquirer/type': 3.0.8(@types/node@24.1.0) - '@types/node': 24.1.0 ansi-escapes: 4.3.2 yoctocolors-cjs: 2.1.2 + optionalDependencies: + '@types/node': 24.1.0 '@inquirer/type@3.0.8(@types/node@24.1.0)': - dependencies: + optionalDependencies: '@types/node': 24.1.0 '@isaacs/balanced-match@4.0.1': {} @@ -4137,7 +4205,7 @@ snapshots: '@isaacs/string-locale-compare@1.1.0': {} - '@kellyselden/node-template@6.5.2': {} + '@kellyselden/node-template@6.9.0': {} '@marionebl/sander@0.6.1': dependencies: @@ -4382,6 +4450,8 @@ snapshots: dependencies: '@types/node': 24.1.0 + '@types/estree@1.0.8': {} + '@types/fs-extra@8.1.5': dependencies: '@types/node': 24.1.0 @@ -4399,6 +4469,8 @@ snapshots: dependencies: glob: 11.0.3 + '@types/json-schema@7.0.15': {} + '@types/keyv@3.1.4': dependencies: '@types/node': 24.1.0 @@ -4431,8 +4503,6 @@ snapshots: '@types/glob': 9.0.0 '@types/node': 24.1.0 - '@ungap/structured-clone@1.3.0': {} - JSONStream@1.3.5: dependencies: jsonparse: 1.3.1 @@ -5064,7 +5134,7 @@ snapshots: core-util-is@1.0.3: {} - cosmiconfig-typescript-loader@6.1.0(@types/node@24.1.0)(cosmiconfig@9.0.0)(typescript@5.9.2): + cosmiconfig-typescript-loader@6.1.0(@types/node@24.1.0)(cosmiconfig@9.0.0(typescript@5.9.2))(typescript@5.9.2): dependencies: '@types/node': 24.1.0 cosmiconfig: 9.0.0(typescript@5.9.2) @@ -5084,6 +5154,7 @@ snapshots: import-fresh: 3.3.1 js-yaml: 4.1.0 parse-json: 5.2.0 + optionalDependencies: typescript: 5.9.2 cpr@3.0.1: @@ -5130,6 +5201,7 @@ snapshots: debug@4.4.1(supports-color@8.1.1): dependencies: ms: 2.1.3 + optionalDependencies: supports-color: 8.1.1 decamelize-keys@1.1.1: @@ -5177,10 +5249,6 @@ snapshots: dependencies: path-type: 4.0.0 - doctrine@3.0.0: - dependencies: - esutils: 2.0.3 - dot-prop@3.0.0: dependencies: is-obj: 1.0.1 @@ -5204,6 +5272,10 @@ snapshots: eastasianwidth@0.2.0: {} + ember-addon-codemods-manifest@1.0.11: {} + + ember-app-codemods-manifest@1.0.10: {} + ember-cli-update@2.0.1: dependencies: boilerplate-update: 2.1.1 @@ -5274,52 +5346,58 @@ snapshots: escape-string-regexp@4.0.0: {} - eslint-compat-utils@0.5.1(eslint@8.57.1): + eslint-compat-utils@0.5.1(eslint@9.35.0(jiti@2.5.1)): dependencies: - eslint: 8.57.1 + eslint: 9.35.0(jiti@2.5.1) semver: 7.7.2 - eslint-config-sane-node@2.0.0(eslint-config-sane@1.0.2)(eslint-plugin-json-files@5.1.0)(eslint-plugin-n@17.21.3): + eslint-config-sane-node@6.0.0(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2): dependencies: - eslint-config-sane: 1.0.2(eslint-plugin-prefer-let@4.0.0)(eslint@8.57.1) - eslint-plugin-json-files: 5.1.0(eslint@8.57.1) - eslint-plugin-n: 17.21.3(eslint@8.57.1)(typescript@5.9.2) + '@eslint/config-helpers': 0.3.1 + eslint-config-sane: 4.0.0 + eslint-plugin-json-files: 5.1.0(eslint@9.35.0(jiti@2.5.1)) + eslint-plugin-n: 17.21.3(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2) + globals: 16.3.0 + transitivePeerDependencies: + - eslint + - typescript - eslint-config-sane@1.0.2(eslint-plugin-prefer-let@4.0.0)(eslint@8.57.1): + eslint-config-sane@4.0.0: dependencies: - eslint: 8.57.1 + '@eslint/config-helpers': 0.3.1 + '@eslint/js': 9.35.0 eslint-plugin-prefer-let: 4.0.0 - eslint-plugin-es-x@7.8.0(eslint@8.57.1): + eslint-plugin-es-x@7.8.0(eslint@9.35.0(jiti@2.5.1)): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@8.57.1) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.35.0(jiti@2.5.1)) '@eslint-community/regexpp': 4.12.1 - eslint: 8.57.1 - eslint-compat-utils: 0.5.1(eslint@8.57.1) + eslint: 9.35.0(jiti@2.5.1) + eslint-compat-utils: 0.5.1(eslint@9.35.0(jiti@2.5.1)) - eslint-plugin-json-files@5.1.0(eslint@8.57.1): + eslint-plugin-json-files@5.1.0(eslint@9.35.0(jiti@2.5.1)): dependencies: ajv: 8.17.1 better-ajv-errors: 2.0.2(ajv@8.17.1) - eslint: 8.57.1 + eslint: 9.35.0(jiti@2.5.1) fast-glob: 3.3.3 requireindex: 1.2.0 semver: 7.7.2 sort-package-json: 1.57.0 - eslint-plugin-mocha@10.5.0(eslint@8.57.1): + eslint-plugin-mocha@10.5.0(eslint@9.35.0(jiti@2.5.1)): dependencies: - eslint: 8.57.1 - eslint-utils: 3.0.0(eslint@8.57.1) + eslint: 9.35.0(jiti@2.5.1) + eslint-utils: 3.0.0(eslint@9.35.0(jiti@2.5.1)) globals: 13.24.0 rambda: 7.5.0 - eslint-plugin-n@17.21.3(eslint@8.57.1)(typescript@5.9.2): + eslint-plugin-n@17.21.3(eslint@9.35.0(jiti@2.5.1))(typescript@5.9.2): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@8.57.1) + '@eslint-community/eslint-utils': 4.7.0(eslint@9.35.0(jiti@2.5.1)) enhanced-resolve: 5.18.2 - eslint: 8.57.1 - eslint-plugin-es-x: 7.8.0(eslint@8.57.1) + eslint: 9.35.0(jiti@2.5.1) + eslint-plugin-es-x: 7.8.0(eslint@9.35.0(jiti@2.5.1)) get-tsconfig: 4.10.1 globals: 15.15.0 globrex: 0.1.2 @@ -5333,68 +5411,69 @@ snapshots: dependencies: requireindex: 1.2.0 - eslint-scope@7.2.2: + eslint-scope@8.4.0: dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 - eslint-utils@3.0.0(eslint@8.57.1): + eslint-utils@3.0.0(eslint@9.35.0(jiti@2.5.1)): dependencies: - eslint: 8.57.1 + eslint: 9.35.0(jiti@2.5.1) eslint-visitor-keys: 2.1.0 eslint-visitor-keys@2.1.0: {} eslint-visitor-keys@3.4.3: {} - eslint@8.57.1: + eslint-visitor-keys@4.2.1: {} + + eslint@9.35.0(jiti@2.5.1): dependencies: - '@eslint-community/eslint-utils': 4.7.0(eslint@8.57.1) + '@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.5.1)) '@eslint-community/regexpp': 4.12.1 - '@eslint/eslintrc': 2.1.4 - '@eslint/js': 8.57.1 - '@humanwhocodes/config-array': 0.13.0 + '@eslint/config-array': 0.21.0 + '@eslint/config-helpers': 0.3.1 + '@eslint/core': 0.15.2 + '@eslint/eslintrc': 3.3.1 + '@eslint/js': 9.35.0 + '@eslint/plugin-kit': 0.3.5 + '@humanfs/node': 0.16.7 '@humanwhocodes/module-importer': 1.0.1 - '@nodelib/fs.walk': 1.2.8 - '@ungap/structured-clone': 1.3.0 + '@humanwhocodes/retry': 0.4.3 + '@types/estree': 1.0.8 + '@types/json-schema': 7.0.15 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 debug: 4.4.1(supports-color@8.1.1) - doctrine: 3.0.0 escape-string-regexp: 4.0.0 - eslint-scope: 7.2.2 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 esquery: 1.6.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 + file-entry-cache: 8.0.0 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.24.0 - graphemer: 1.4.0 ignore: 5.3.2 imurmurhash: 0.1.4 is-glob: 4.0.3 - is-path-inside: 3.0.3 - js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 optionator: 0.9.4 - strip-ansi: 6.0.1 - text-table: 0.2.0 + optionalDependencies: + jiti: 2.5.1 transitivePeerDependencies: - supports-color - espree@9.6.1: + espree@10.4.0: dependencies: acorn: 8.15.0 acorn-jsx: 5.3.2(acorn@8.15.0) - eslint-visitor-keys: 3.4.3 + eslint-visitor-keys: 4.2.1 esprima@4.0.1: {} @@ -5468,7 +5547,7 @@ snapshots: reusify: 1.1.0 fdir@6.4.6(picomatch@4.0.3): - dependencies: + optionalDependencies: picomatch: 4.0.3 figures@3.2.0: @@ -5479,9 +5558,9 @@ snapshots: dependencies: is-unicode-supported: 2.1.0 - file-entry-cache@6.0.1: + file-entry-cache@8.0.0: dependencies: - flat-cache: 3.2.0 + flat-cache: 4.0.1 fill-range@7.1.1: dependencies: @@ -5534,11 +5613,10 @@ snapshots: matcher-collection: 2.0.1 walk-sync: 3.0.0 - flat-cache@3.2.0: + flat-cache@4.0.1: dependencies: flatted: 3.3.3 keyv: 4.5.4 - rimraf: 3.0.2 flat@5.0.2: {} @@ -5787,8 +5865,12 @@ snapshots: dependencies: type-fest: 0.20.2 + globals@14.0.0: {} + globals@15.15.0: {} + globals@16.3.0: {} + globby@10.0.0: dependencies: '@types/glob': 7.2.0 @@ -5822,8 +5904,6 @@ snapshots: graceful-fs@4.2.11: {} - graphemer@1.4.0: {} - handlebars@4.7.8: dependencies: minimist: 1.2.8 @@ -5978,11 +6058,12 @@ snapshots: '@inquirer/core': 10.1.15(@types/node@24.1.0) '@inquirer/prompts': 7.8.0(@types/node@24.1.0) '@inquirer/type': 3.0.8(@types/node@24.1.0) - '@types/node': 24.1.0 ansi-escapes: 4.3.2 mute-stream: 2.0.0 run-async: 4.0.5 rxjs: 7.8.2 + optionalDependencies: + '@types/node': 24.1.0 inquirer@8.2.6: dependencies: @@ -6518,14 +6599,14 @@ snapshots: mkdirp@3.0.1: {} - mocha-helpers@10.2.0: + mocha-helpers@10.2.1: dependencies: callsites: 3.1.0 commondir: 1.0.1 events-async: 1.2.1 mocha: 11.7.1 titleize: 2.1.0 - tmp: 0.2.3 + tmp: 0.2.5 mocha@11.7.1: dependencies: @@ -7164,7 +7245,7 @@ snapshots: dependencies: rc: 1.2.8 - renovate-config-standard@2.3.0: {} + renovate-config-standard@2.4.2: {} require-directory@2.1.1: {} @@ -7459,8 +7540,6 @@ snapshots: text-extensions@2.4.0: {} - text-table@0.2.0: {} - three-way-merger@0.6.3: dependencies: semver: 6.3.1 @@ -7497,6 +7576,8 @@ snapshots: tmp@0.2.3: {} + tmp@0.2.5: {} + to-readable-stream@1.0.0: {} to-regex-range@5.0.1: diff --git a/test/index-test.js b/test/index-test.js index 83e7babe..a95f772d 100644 --- a/test/index-test.js +++ b/test/index-test.js @@ -7,11 +7,11 @@ const path = require('path'); const { buildTmp, processBin, - fixtureCompare: _fixtureCompare + fixtureCompare: _fixtureCompare, } = require('git-fixtures'); const { assertNoUnstaged, - assertCodemodRan + assertCodemodRan, } = require('./helpers/assertions'); const fixturesPath = path.resolve(__dirname, 'fixtures'); @@ -42,10 +42,10 @@ describe('runs codemods', function() { async function merge({ statsOnly, - beforeMerge = () => Promise.resolve() + beforeMerge = () => Promise.resolve(), }) { tmpPath = await buildTmp({ - fixturesPath: projectFixturesPath + fixturesPath: projectFixturesPath, }); await beforeMerge(); @@ -54,16 +54,16 @@ describe('runs codemods', function() { bin: 'ember-cli-update', args: [ statsOnly ? '--stats-only' : '--run-codemods', - `--codemods-json='${JSON.stringify(manifest)}'` + `--codemods-json='${JSON.stringify(manifest)}'`, ], cwd: tmpPath, commitMessage, - expect + expect, }); } function fixtureCompare({ - mergeFixtures + mergeFixtures, }) { let actual = tmpPath; let expected = mergeFixtures; @@ -71,16 +71,16 @@ describe('runs codemods', function() { _fixtureCompare({ expect, actual, - expected + expected, }); } async function getApplicableCodemods() { let { ps, - promise + promise, } = await merge({ - statsOnly: true + statsOnly: true, }); ps.stdout.pipe(process.stdout); @@ -98,7 +98,6 @@ describe('runs codemods', function() { return applicableCodemods; } - // eslint-disable-next-line mocha/no-hooks-for-single-case before(async function() { applicableCodemods = await getApplicableCodemods(); }); @@ -119,18 +118,18 @@ describe('runs codemods', function() { dest, { overwrite: true, - recursive: true - } + recursive: true, + }, ); } let { ps, - promise + promise, } = await merge({ async beforeMerge() { await _merge('local', tmpPath); - } + }, }); ps.stdout.pipe(process.stdout); @@ -151,7 +150,7 @@ describe('runs codemods', function() { ps.stdout.on('data', stdoutData); let { - status + status, } = await promise; assertNoUnstaged(status); @@ -167,13 +166,13 @@ describe('runs codemods', function() { let mergeFixtures = await buildTmp({ fixturesPath: projectFixturesPath, - noGit: true + noGit: true, }); await _merge(nodeVersion, mergeFixtures); fixtureCompare({ - mergeFixtures + mergeFixtures, }); }); }