@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.
@@ -108,6 +108,7 @@ export interface CommitObject {
108
108
  * The package manager used to install dependencies.
109
109
  */
110
110
  export declare enum PackageManager {
111
+ Bun = "bun",
111
112
  Cnpm = "cnpm",
112
113
  Npm = "npm",
113
114
  Pnpm = "pnpm",
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";
@@ -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.2",
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.2",
27
- "@angular-devkit/schematics": "17.1.2",
28
- "jsonc-parser": "3.2.0"
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",
@@ -15,7 +15,7 @@
15
15
  "karma-jasmine-html-reporter": "~2.1.0",
16
16
  "karma-jasmine": "~5.1.0",
17
17
  "karma": "~6.4.0",
18
- "ng-packagr": "^17.1.0",
18
+ "ng-packagr": "^17.1.0-next.0",
19
19
  "protractor": "~7.0.0",
20
20
  "rxjs": "~7.8.0",
21
21
  "tslib": "^2.3.0",
@@ -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.1.0',
17
- DevkitBuildAngular: '^17.1.2',
18
- AngularSSR: '^17.1.2',
16
+ Angular: '^17.2.0-next.0',
17
+ DevkitBuildAngular: '^17.2.0-next.1',
18
+ AngularSSR: '^17.2.0-next.1',
19
19
  };
@@ -34,6 +34,7 @@ export interface Schema {
34
34
  * The package manager used to install dependencies.
35
35
  */
36
36
  export declare enum PackageManager {
37
+ Bun = "bun",
37
38
  Cnpm = "cnpm",
38
39
  Npm = "npm",
39
40
  Pnpm = "pnpm",
@@ -8,6 +8,7 @@ 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";
@@ -40,7 +40,7 @@
40
40
  "packageManager": {
41
41
  "description": "The package manager used to install dependencies.",
42
42
  "type": "string",
43
- "enum": ["npm", "yarn", "pnpm", "cnpm"]
43
+ "enum": ["npm", "yarn", "pnpm", "cnpm", "bun"]
44
44
  }
45
45
  },
46
46
  "required": ["name", "version"]
@@ -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';
@@ -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; } });