@angular-devkit/schematics 12.2.0-next.0 → 12.2.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-devkit/schematics",
3
- "version": "12.2.0-next.0",
3
+ "version": "12.2.0",
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": "12.2.0-next.0",
21
+ "@angular-devkit/core": "12.2.0",
22
22
  "ora": "5.4.1",
23
23
  "rxjs": "6.6.7"
24
24
  },
package/tasks/BUILD.bazel CHANGED
@@ -20,6 +20,7 @@ ts_library(
20
20
  "tslint-fix/test/**/*",
21
21
  ],
22
22
  ),
23
+ data = ["package.json"],
23
24
  module_name = "@angular-devkit/schematics/tasks",
24
25
  module_root = "index.d.ts",
25
26
  # The attribute below is needed in g3 to turn off strict typechecking
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "@angular-devkit/schematics/tasks",
3
+ "main": "index.js",
4
+ "typings": "index.d.ts"
5
+ }
@@ -13,6 +13,7 @@ ts_library(
13
13
  srcs = glob(
14
14
  include = ["**/*.ts"],
15
15
  ),
16
+ data = ["package.json"],
16
17
  module_name = "@angular-devkit/schematics/testing",
17
18
  module_root = "index.d.ts",
18
19
  deps = [
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "@angular-devkit/schematics/testing",
3
+ "main": "index.js",
4
+ "typings": "index.d.ts"
5
+ }
package/tools/BUILD.bazel CHANGED
@@ -19,6 +19,7 @@ ts_library(
19
19
  "test/**/*.ts",
20
20
  ],
21
21
  ),
22
+ data = ["package.json"],
22
23
  module_name = "@angular-devkit/schematics/tools",
23
24
  module_root = "index.d.ts",
24
25
  # The attribute below is needed in g3 to turn off strict typechecking
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "@angular-devkit/schematics/tools",
3
+ "main": "index.js",
4
+ "typings": "index.d.ts"
5
+ }
@@ -1,10 +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 * from './index';
9
- export * from './formats/index';
10
- export * from './workflow/index';
@@ -1,22 +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
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
12
- }) : (function(o, m, k, k2) {
13
- if (k2 === undefined) k2 = k;
14
- o[k2] = m[k];
15
- }));
16
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
17
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
18
- };
19
- Object.defineProperty(exports, "__esModule", { value: true });
20
- __exportStar(require("./index"), exports);
21
- __exportStar(require("./formats/index"), exports);
22
- __exportStar(require("./workflow/index"), exports);