@angular-devkit/schematics 13.2.0-next.2 → 13.2.1
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 +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -124,7 +124,7 @@ The system operates on placeholders defined inside files or their paths as loade
|
|
|
124
124
|
| Placeholder | Description |
|
|
125
125
|
| ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
126
126
|
| `<%= expression %>` | Replaced with the result of the call of the given expression. This only supports direct expressions, no structural (for/if/...) JavaScript. |
|
|
127
|
-
| `<%- expression %>` | Same as above, but the value of the result will be escaped for HTML when inserted (i.e. replacing '<' with '
|
|
127
|
+
| `<%- expression %>` | Same as above, but the value of the result will be escaped for HTML when inserted (i.e. replacing '<' with '\<') |
|
|
128
128
|
| `<% inline code %>` | Inserts the given code into the template structure, allowing to insert structural JavaScript. |
|
|
129
129
|
| `<%# text %>` | A comment, which gets entirely dropped. |
|
|
130
130
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-devkit/schematics",
|
|
3
|
-
"version": "13.2.
|
|
3
|
+
"version": "13.2.1",
|
|
4
4
|
"description": "Angular Schematics - Library",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"typings": "src/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"schematics"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@angular-devkit/core": "13.2.
|
|
21
|
+
"@angular-devkit/core": "13.2.1",
|
|
22
22
|
"jsonc-parser": "3.0.0",
|
|
23
23
|
"magic-string": "0.25.7",
|
|
24
24
|
"ora": "5.4.1",
|