@angular-eslint/template-parser 21.2.1-alpha.2 → 21.2.1-alpha.4
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/dist/index.d.ts.map +1 -1
- package/dist/index.js +15 -3
- package/package.json +4 -4
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAEV,UAAU,EAEX,MAAM,0CAA0C,CAAC;AAElD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAEV,UAAU,EAEX,MAAM,0CAA0C,CAAC;AAElD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAW,YAAY,EAAE,MAAM,cAAc,CAAC;AACrD,OAAO,EACL,6BAA6B,EAC7B,0BAA0B,EAC3B,MAAM,8BAA8B,CAAC;AAEtC,KAAK,eAAe,GAAG,GAAG,CAAC;AAE3B,UAAU,IAAI;IAEZ,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;IACnB,IAAI,EAAE,eAAe,CAAC;CACvB;AAED,UAAU,WAAW;IACnB,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAC9B;AAED,UAAU,KAAM,SAAQ,QAAQ,CAAC,QAAQ;IACvC,IAAI,EAAE,eAAe,CAAC;IACtB,KAAK,EAAE,MAAM,CAAC;CACf;AAED,UAAU,GAAI,SAAQ,IAAI,EAAE,IAAI,CAAC,KAAK,EAAE,QAAQ,CAAC;IAC/C,QAAQ,EAAE,KAAK,EAAE,CAAC;IAClB,MAAM,EAAE,KAAK,EAAE,CAAC;IAEhB,aAAa,EAAE,GAAG,EAAE,CAAC;CACtB;AA2QD,qBAAa,kBAAmB,SAAQ,KAAK;aAGzB,QAAQ,EAAE,MAAM;aAChB,KAAK,EAAE,MAAM;aACb,UAAU,EAAE,MAAM;aAClB,MAAM,EAAE,MAAM;gBAJ9B,OAAO,EAAE,MAAM,EACC,QAAQ,EAAE,MAAM,EAChB,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,MAAM,EAClB,MAAM,EAAE,MAAM;CASjC;AAED,wBAAgB,wBAAwB,CACtC,UAAU,EAAE,UAAU,GACrB,kBAAkB,CAOpB;AAED,MAAM,WAAW,aAAa;IAC5B,QAAQ,EAAE,MAAM,CAAC;IACjB,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC/B;AAED,iBAAS,cAAc,CACrB,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,aAAa,GACrB;IACD,GAAG,EAAE,GAAG,CAAC;IACT,YAAY,EAAE,YAAY,CAAC,OAAO,YAAY,CAAC,CAAC;IAChD,WAAW,EAAE,WAAW,CAAC;IACzB,QAAQ,EAAE;QACR,6BAA6B,EAAE,OAAO,6BAA6B,CAAC;QACpE,0BAA0B,EAAE,OAAO,0BAA0B,CAAC;KAC/D,CAAC;CACH,CA+DA;AAED,OAAO,EAAE,cAAc,EAAE,CAAC;AAE1B,wBAAgB,KAAK,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,aAAa,GAAG,GAAG,CAE/D;AAGD,eAAO,MAAM,OAAO,EAAE,MAA2C,CAAC;AAElE,eAAO,MAAM,IAAI;;;CAGhB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -18,11 +18,14 @@ const KEYS = {
|
|
|
18
18
|
Conditional: ['condition', 'trueExp', 'falseExp'],
|
|
19
19
|
Element: ['children', 'inputs', 'outputs', 'attributes'],
|
|
20
20
|
Interpolation: ['expressions'],
|
|
21
|
+
KeyedRead: ['receiver', 'key'],
|
|
22
|
+
NonNullAssert: ['expression'],
|
|
21
23
|
PrefixNot: ['expression'],
|
|
22
24
|
Program: ['templateNodes'],
|
|
23
25
|
PropertyRead: ['receiver'],
|
|
26
|
+
SafePropertyRead: ['receiver'],
|
|
24
27
|
Template: ['templateAttrs', 'children', 'inputs'],
|
|
25
|
-
BindingPipe: ['exp'],
|
|
28
|
+
BindingPipe: ['exp', 'args'],
|
|
26
29
|
DeferredBlock: [
|
|
27
30
|
'children',
|
|
28
31
|
'placeholder',
|
|
@@ -283,8 +286,17 @@ function parseForESLint(code, options) {
|
|
|
283
286
|
templateNodes: angularCompilerResult.nodes,
|
|
284
287
|
value: code,
|
|
285
288
|
};
|
|
286
|
-
const
|
|
287
|
-
|
|
289
|
+
const astAsProgram = Object.defineProperties(ast, {
|
|
290
|
+
body: {
|
|
291
|
+
value: [],
|
|
292
|
+
enumerable: false,
|
|
293
|
+
},
|
|
294
|
+
sourceType: {
|
|
295
|
+
value: 'module',
|
|
296
|
+
enumerable: false,
|
|
297
|
+
},
|
|
298
|
+
});
|
|
299
|
+
const scopeManager = (0, eslint_scope_1.analyze)(astAsProgram);
|
|
288
300
|
preprocessNode(ast, code);
|
|
289
301
|
const startSourceSpan = getStartSourceSpanFromAST(ast);
|
|
290
302
|
const endSourceSpan = getEndSourceSpanFromAST(ast);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-eslint/template-parser",
|
|
3
|
-
"version": "21.2.1-alpha.
|
|
3
|
+
"version": "21.2.1-alpha.4",
|
|
4
4
|
"description": "Angular Template parser for ESLint",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"LICENSE"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"eslint-scope": "^9.
|
|
22
|
-
"@angular-eslint/bundled-angular-compiler": "21.2.1-alpha.
|
|
21
|
+
"eslint-scope": "^9.1.1",
|
|
22
|
+
"@angular-eslint/bundled-angular-compiler": "21.2.1-alpha.4"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"eslint": "^8.57.0 || ^9.0.0",
|
|
25
|
+
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
26
26
|
"typescript": "*"
|
|
27
27
|
},
|
|
28
28
|
"gitHead": "e2006e5e9c99e5a943d1a999e0efa5247d29ec24"
|