@angular-devkit/schematics 17.0.3 → 17.0.5
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 +11 -10
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -10,16 +10,17 @@ What distinguishes Schematics from other generators, such as Yeoman or Yarn Crea
|
|
|
10
10
|
|
|
11
11
|
# Glossary
|
|
12
12
|
|
|
13
|
-
| Term | Description
|
|
14
|
-
| -------------- |
|
|
15
|
-
| **Schematics** | A generator that executes descriptive code without side effects on an existing file system.
|
|
16
|
-
| **Collection** | A list of schematics metadata. Schematics can be referred by name inside a collection.
|
|
17
|
-
| **Tool** | The code using the Schematics library.
|
|
18
|
-
| **Tree** | A staging area for changes, containing the original file system, and a list of changes to apply to it.
|
|
19
|
-
| **Rule** | A function that applies actions to a `Tree`. It returns a new `Tree` that will contain all transformations to be applied.
|
|
20
|
-
| **Source** | A function that creates an entirely new `Tree` from an empty filesystem. For example, a file source could read files from disk and create a Create Action for each of those.
|
|
21
|
-
| **Action** | An atomic operation to be validated and committed to a filesystem or a `Tree`. Actions are created by schematics.
|
|
22
|
-
| **Sink** | The final destination of all `Action`s.
|
|
13
|
+
| Term | Description |
|
|
14
|
+
| -------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
15
|
+
| **Schematics** | A generator that executes descriptive code without side effects on an existing file system. |
|
|
16
|
+
| **Collection** | A list of schematics metadata. Schematics can be referred by name inside a collection. |
|
|
17
|
+
| **Tool** | The code using the Schematics library. |
|
|
18
|
+
| **Tree** | A staging area for changes, containing the original file system, and a list of changes to apply to it. |
|
|
19
|
+
| **Rule** | A function that applies actions to a `Tree`. It returns a new `Tree` that will contain all transformations to be applied. |
|
|
20
|
+
| **Source** | A function that creates an entirely new `Tree` from an empty filesystem. For example, a file source could read files from disk and create a Create Action for each of those. |
|
|
21
|
+
| **Action** | An atomic operation to be validated and committed to a filesystem or a `Tree`. Actions are created by schematics. |
|
|
22
|
+
| **Sink** | The final destination of all `Action`s. |
|
|
23
|
+
| **Task** | A Task is a way to execute an external command or script in a schematic. A Task can be used to perform actions such as installing dependencies, running tests, or building a project. A Task is created by using the `SchematicContext` object and can be scheduled to run before or after the schematic `Tree` is applied. |
|
|
23
24
|
|
|
24
25
|
# Tooling
|
|
25
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-devkit/schematics",
|
|
3
|
-
"version": "17.0.
|
|
3
|
+
"version": "17.0.5",
|
|
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
|
"tooling"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@angular-devkit/core": "17.0.
|
|
21
|
+
"@angular-devkit/core": "17.0.5",
|
|
22
22
|
"jsonc-parser": "3.2.0",
|
|
23
23
|
"magic-string": "0.30.5",
|
|
24
24
|
"ora": "5.4.1",
|