@schematics/angular 17.1.2 → 17.2.0-next.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/ng-new/schema.d.ts +1 -0
- package/ng-new/schema.js +1 -0
- package/ng-new/schema.json +1 -1
- package/package.json +5 -6
- package/utility/latest-versions/package.json +1 -1
- package/utility/latest-versions.js +3 -3
- package/workspace/schema.d.ts +1 -0
- package/workspace/schema.js +1 -0
- package/workspace/schema.json +1 -1
- package/private/components.d.ts +0 -8
- package/private/components.js +0 -16
package/ng-new/schema.d.ts
CHANGED
package/ng-new/schema.js
CHANGED
|
@@ -8,6 +8,7 @@ exports.ViewEncapsulation = exports.Style = exports.PackageManager = void 0;
|
|
|
8
8
|
*/
|
|
9
9
|
var PackageManager;
|
|
10
10
|
(function (PackageManager) {
|
|
11
|
+
PackageManager["Bun"] = "bun";
|
|
11
12
|
PackageManager["Cnpm"] = "cnpm";
|
|
12
13
|
PackageManager["Npm"] = "npm";
|
|
13
14
|
PackageManager["Pnpm"] = "pnpm";
|
package/ng-new/schema.json
CHANGED
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
"packageManager": {
|
|
133
133
|
"description": "The package manager used to install dependencies.",
|
|
134
134
|
"type": "string",
|
|
135
|
-
"enum": ["npm", "yarn", "pnpm", "cnpm"]
|
|
135
|
+
"enum": ["npm", "yarn", "pnpm", "cnpm", "bun"]
|
|
136
136
|
},
|
|
137
137
|
"standalone": {
|
|
138
138
|
"description": "Creates an application based upon the standalone API, without NgModules.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schematics/angular",
|
|
3
|
-
"version": "17.1
|
|
3
|
+
"version": "17.2.0-next.1",
|
|
4
4
|
"description": "Schematics specific to Angular",
|
|
5
5
|
"homepage": "https://github.com/angular/angular-cli",
|
|
6
6
|
"keywords": [
|
|
@@ -18,14 +18,13 @@
|
|
|
18
18
|
"./utility": "./utility/index.js",
|
|
19
19
|
"./utility/*": "./utility/*.js",
|
|
20
20
|
"./migrations/migration-collection.json": "./migrations/migration-collection.json",
|
|
21
|
-
"./*": "./*.js"
|
|
22
|
-
"./private/components": "./private/components.js"
|
|
21
|
+
"./*": "./*.js"
|
|
23
22
|
},
|
|
24
23
|
"schematics": "./collection.json",
|
|
25
24
|
"dependencies": {
|
|
26
|
-
"@angular-devkit/core": "17.1
|
|
27
|
-
"@angular-devkit/schematics": "17.1
|
|
28
|
-
"jsonc-parser": "3.2.
|
|
25
|
+
"@angular-devkit/core": "17.2.0-next.1",
|
|
26
|
+
"@angular-devkit/schematics": "17.2.0-next.1",
|
|
27
|
+
"jsonc-parser": "3.2.1"
|
|
29
28
|
},
|
|
30
29
|
"repository": {
|
|
31
30
|
"type": "git",
|
|
@@ -13,7 +13,7 @@ exports.latestVersions = {
|
|
|
13
13
|
// but ts_library doesn't support JSON inputs.
|
|
14
14
|
...require('./latest-versions/package.json')['dependencies'],
|
|
15
15
|
// As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
|
|
16
|
-
Angular: '^17.
|
|
17
|
-
DevkitBuildAngular: '^17.1
|
|
18
|
-
AngularSSR: '^17.1
|
|
16
|
+
Angular: '^17.2.0-next.0',
|
|
17
|
+
DevkitBuildAngular: '^17.2.0-next.1',
|
|
18
|
+
AngularSSR: '^17.2.0-next.1',
|
|
19
19
|
};
|
package/workspace/schema.d.ts
CHANGED
package/workspace/schema.js
CHANGED
package/workspace/schema.json
CHANGED
package/private/components.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Google LLC All Rights Reserved.
|
|
4
|
-
*
|
|
5
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
6
|
-
* found in the LICENSE file at https://angular.io/license
|
|
7
|
-
*/
|
|
8
|
-
export { addModuleImportToStandaloneBootstrap, addFunctionalProvidersToStandaloneBootstrap, callsProvidersFunction, findBootstrapApplicationCall, importsProvidersFrom, } from './standalone';
|
package/private/components.js
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* @license
|
|
4
|
-
* Copyright Google LLC All Rights Reserved.
|
|
5
|
-
*
|
|
6
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
7
|
-
* found in the LICENSE file at https://angular.io/license
|
|
8
|
-
*/
|
|
9
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
exports.importsProvidersFrom = exports.findBootstrapApplicationCall = exports.callsProvidersFunction = exports.addFunctionalProvidersToStandaloneBootstrap = exports.addModuleImportToStandaloneBootstrap = void 0;
|
|
11
|
-
var standalone_1 = require("./standalone");
|
|
12
|
-
Object.defineProperty(exports, "addModuleImportToStandaloneBootstrap", { enumerable: true, get: function () { return standalone_1.addModuleImportToStandaloneBootstrap; } });
|
|
13
|
-
Object.defineProperty(exports, "addFunctionalProvidersToStandaloneBootstrap", { enumerable: true, get: function () { return standalone_1.addFunctionalProvidersToStandaloneBootstrap; } });
|
|
14
|
-
Object.defineProperty(exports, "callsProvidersFunction", { enumerable: true, get: function () { return standalone_1.callsProvidersFunction; } });
|
|
15
|
-
Object.defineProperty(exports, "findBootstrapApplicationCall", { enumerable: true, get: function () { return standalone_1.findBootstrapApplicationCall; } });
|
|
16
|
-
Object.defineProperty(exports, "importsProvidersFrom", { enumerable: true, get: function () { return standalone_1.importsProvidersFrom; } });
|