@angular/core 15.2.0-next.2 → 15.2.0-next.3

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.
@@ -7,6 +7,7 @@
7
7
  "mode": {
8
8
  "description": "Operation that should be performed by the migrator",
9
9
  "type": "string",
10
+ "enum": ["convert-to-standalone", "prune-ng-modules", "standalone-bootstrap"],
10
11
  "default": "convert-to-standalone",
11
12
  "x-prompt": {
12
13
  "message": "Choose the type of migration:",
@@ -19,19 +20,19 @@
19
20
  {
20
21
  "value": "prune-ng-modules",
21
22
  "label": "Remove unnecessary NgModule classes"
23
+ },
24
+ {
25
+ "value": "standalone-bootstrap",
26
+ "label": "Bootstrap the application using standalone APIs"
22
27
  }
23
28
  ]
24
29
  }
25
30
  },
26
31
  "path": {
27
32
  "type": "string",
28
- "$default": {
29
- "$source": "workingDirectory"
30
- },
31
33
  "description": "Path relative to the project root which should be migrated",
32
34
  "x-prompt": "Which path in your project should be migrated?",
33
35
  "default": "./"
34
36
  }
35
- },
36
- "required": ["mode", "path"]
37
+ }
37
38
  }
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v15.2.0-next.2
2
+ * @license Angular v15.2.0-next.3
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */