@schematics/angular 11.1.4 → 11.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.
@@ -109,15 +109,12 @@ function default_1(options) {
109
109
  ...options,
110
110
  }),
111
111
  !options.type ? schematics_1.forEach((file => {
112
- if (!!file.path.match(new RegExp('..'))) {
113
- return {
112
+ return file.path.includes('..')
113
+ ? {
114
114
  content: file.content,
115
115
  path: file.path.replace('..', '.'),
116
- };
117
- }
118
- else {
119
- return file;
120
- }
116
+ }
117
+ : file;
121
118
  })) : schematics_1.noop(),
122
119
  schematics_1.move(parsedPath.path),
123
120
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schematics/angular",
3
- "version": "11.1.4",
3
+ "version": "11.2.0",
4
4
  "description": "Schematics specific to Angular",
5
5
  "keywords": [
6
6
  "angular",
@@ -14,8 +14,8 @@
14
14
  ],
15
15
  "schematics": "./collection.json",
16
16
  "dependencies": {
17
- "@angular-devkit/core": "11.1.4",
18
- "@angular-devkit/schematics": "11.1.4",
17
+ "@angular-devkit/core": "11.2.0",
18
+ "@angular-devkit/schematics": "11.2.0",
19
19
  "jsonc-parser": "3.0.0"
20
20
  },
21
21
  "repository": {
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
10
10
  exports.latestVersions = void 0;
11
11
  exports.latestVersions = {
12
12
  // These versions should be kept up to date with latest Angular peer dependencies.
13
- Angular: '~11.1.2',
13
+ Angular: '~11.2.0',
14
14
  RxJs: '~6.6.0',
15
15
  ZoneJs: '~0.11.3',
16
16
  TypeScript: '~4.1.2',
@@ -19,8 +19,8 @@ exports.latestVersions = {
19
19
  // For our e2e tests, these versions must match the latest tag present on the branch.
20
20
  // During RC periods they will not match the latest RC until there's a new git tag, and
21
21
  // should not be updated.
22
- DevkitBuildAngular: '~0.1101.4',
23
- DevkitBuildNgPackagr: '~0.1101.4',
24
- DevkitBuildWebpack: '~0.1101.4',
22
+ DevkitBuildAngular: '~0.1102.0',
23
+ DevkitBuildNgPackagr: '~0.1102.0',
24
+ DevkitBuildWebpack: '~0.1102.0',
25
25
  ngPackagr: '^11.0.0',
26
26
  };
@@ -30,7 +30,7 @@
30
30
  "codelyzer": "^6.0.0",
31
31
  "jasmine-core": "~3.6.0",
32
32
  "jasmine-spec-reporter": "~5.0.0",
33
- "karma": "~5.2.0",
33
+ "karma": "~6.1.0",
34
34
  "karma-chrome-launcher": "~3.1.0",
35
35
  "karma-coverage": "~2.0.3",
36
36
  "karma-jasmine": "~4.0.0",