Skip to content

Commit

Permalink
chore!: require @angular/compiler v17.2 (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
fisker committed Feb 21, 2024
1 parent dd407bd commit 5fa466b
Show file tree
Hide file tree
Showing 5 changed files with 2,067 additions and 1,895 deletions.
672 changes: 336 additions & 336 deletions .yarn/releases/yarn-4.0.2.cjs → .yarn/releases/yarn-4.1.0.cjs
100755 → 100644

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ enableGlobalCache: true

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.0.2.cjs
yarnPath: .yarn/releases/yarn-4.1.0.cjs
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,31 +27,31 @@
"release": "yarn build && standard-version"
},
"devDependencies": {
"@angular/compiler": "17.0.2",
"@babel/code-frame": "7.22.13",
"@babel/parser": "7.23.3",
"@babel/types": "7.23.3",
"@angular/compiler": "17.2.1",
"@babel/code-frame": "7.23.5",
"@babel/parser": "7.23.9",
"@babel/types": "7.23.9",
"@types/babel__code-frame": "7.0.6",
"@types/jest": "29.5.8",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"del-cli": "5.1.0",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-deprecation": "2.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-unicorn": "49.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-unicorn": "51.0.1",
"jest": "29.7.0",
"jest-snapshot-serializer-raw": "1.2.0",
"lines-and-columns": "2.0.4",
"npm-run-all": "4.1.5",
"prettier": "3.1.0",
"prettier": "3.2.5",
"standard-version": "9.5.0",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
"ts-jest": "29.1.2",
"typescript": "5.3.3"
},
"peerDependencies": {
"@angular/compiler": "^17.0.2"
"@angular/compiler": "^17.2.1"
},
"engines": {
"node": ">= 16"
Expand All @@ -64,5 +64,5 @@
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "yarn@4.0.2"
"packageManager": "yarn@4.1.0"
}
2 changes: 1 addition & 1 deletion src/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function parseSimpleBinding(text: string) {

function parseAction(text: string) {
return parse(text, (text, parser) =>
parser.parseAction(text, false, ...NG_PARSE_SHARED_PARAMS),
parser.parseAction(text, ...NG_PARSE_SHARED_PARAMS),
);
}

Expand Down

0 comments on commit 5fa466b

Please sign in to comment.