@angular-eslint/template-parser 18.0.0-alpha.5 → 18.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1 +1,5 @@
1
1
  # @angular-eslint/template-parser
2
+
3
+ Please see https://github.com/angular-eslint/angular-eslint for full usage instructions and guidance.
4
+
5
+ The `@angular-eslint/template-parser` package is a custom parser for ESLint which allows you to write lint rules and run linting using ESLint on Angular templates.
package/dist/index.js CHANGED
@@ -218,7 +218,7 @@ function parseForESLint(code, options) {
218
218
  end: (0, convert_source_span_to_loc_1.convertNodeSourceSpanToLoc)(endSourceSpan).end,
219
219
  };
220
220
  }
221
- // TODO: Stop suppressing parse errors by default in v18
221
+ // TODO: Investigate no longer suppressing parse errors by default in v19
222
222
  const suppressParseErrors = options.suppressParseErrors ?? true;
223
223
  if (!suppressParseErrors && angularCompilerResult.errors?.length) {
224
224
  throw createTemplateParseError(angularCompilerResult.errors[0]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-eslint/template-parser",
3
- "version": "18.0.0-alpha.5",
3
+ "version": "18.0.0",
4
4
  "description": "Angular Template parser for ESLint",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -18,7 +18,7 @@
18
18
  "LICENSE"
19
19
  ],
20
20
  "dependencies": {
21
- "@angular-eslint/bundled-angular-compiler": "18.0.0-alpha.5",
21
+ "@angular-eslint/bundled-angular-compiler": "18.0.0",
22
22
  "eslint-scope": "^8.0.0"
23
23
  },
24
24
  "peerDependencies": {