Skip to content

Commit 0358cde

Browse files
authored
fix(eslint-plugin-template): set template-parser as peer dependency (#2487)
1 parent 8118854 commit 0358cde

7 files changed

+9
-9
lines changed

e2e/src/__snapshots__/eslint-8--inline-template-fixer.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ exports[`eslint-8--inline-template-fixer should generate the expected inline tem
2828
"@types/jasmine": "~5.1.0",
2929
"@typescript-eslint/eslint-plugin": "7.11.0",
3030
"@typescript-eslint/parser": "7.11.0",
31-
"eslint": "8.57.0",
31+
"eslint": "8.57.1",
3232
"jasmine-core": "~5.6.0",
3333
"karma": "~6.4.0",
3434
"karma-chrome-launcher": "~3.2.0",

e2e/src/__snapshots__/eslint-8--new-workspace-create-application-false-ng-add-then-project.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exports[`eslint-8--new-workspace-create-application-false-ng-add-then-project sh
1313
"@types/jasmine": "~5.1.0",
1414
"@typescript-eslint/eslint-plugin": "7.11.0",
1515
"@typescript-eslint/parser": "7.11.0",
16-
"eslint": "8.57.0",
16+
"eslint": "8.57.1",
1717
"jasmine-core": "~5.6.0",
1818
"karma": "~6.4.0",
1919
"karma-chrome-launcher": "~3.2.0",

e2e/src/__snapshots__/eslint-8--new-workspace-create-application-false-project-then-ng-add.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exports[`eslint-8--new-workspace-create-application-false-project-then-ng-add sh
1313
"@types/jasmine": "~5.1.0",
1414
"@typescript-eslint/eslint-plugin": "7.11.0",
1515
"@typescript-eslint/parser": "7.11.0",
16-
"eslint": "8.57.0",
16+
"eslint": "8.57.1",
1717
"jasmine-core": "~5.6.0",
1818
"karma": "~6.4.0",
1919
"karma-chrome-launcher": "~3.2.0",

e2e/src/__snapshots__/eslint-8--new-workspace.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exports[`eslint-8--new-workspace should pass linting after creating a new worksp
1313
"@types/jasmine": "~5.1.0",
1414
"@typescript-eslint/eslint-plugin": "7.11.0",
1515
"@typescript-eslint/parser": "7.11.0",
16-
"eslint": "8.57.0",
16+
"eslint": "8.57.1",
1717
"jasmine-core": "~5.6.0",
1818
"karma": "~6.4.0",
1919
"karma-chrome-launcher": "~3.2.0",

packages/eslint-plugin-template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
"axobject-query": "4.1.0"
2525
},
2626
"devDependencies": {
27-
"@angular-eslint/template-parser": "workspace:*",
2827
"@angular-eslint/test-utils": "workspace:*",
2928
"@types/aria-query": "5.0.4"
3029
},
3130
"peerDependencies": {
31+
"@angular-eslint/template-parser": "workspace:*",
3232
"@typescript-eslint/types": "^7.11.0 || ^8.0.0",
3333
"@typescript-eslint/utils": "^7.11.0 || ^8.0.0",
3434
"eslint": "^8.57.0 || ^9.0.0",

pnpm-lock.yaml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/scripts/release.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import yargs from 'yargs';
44

55
(async () => {
66
try {
7-
const options = await yargs
7+
const options = await yargs(process.argv)
88
.version(false)
99
.option('version', {
1010
description:

0 commit comments

Comments
 (0)