@schematics/angular 13.2.0-next.1 → 13.2.0-next.2

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.
@@ -65,7 +65,17 @@ function addAppToWorkspaceFile(options, appDir, folderName) {
65
65
  schematics['@schematics/angular:component'] = componentSchematicsOptions;
66
66
  }
67
67
  if (options.skipTests || options.minimal) {
68
- ['class', 'component', 'directive', 'guard', 'interceptor', 'pipe', 'service'].forEach((type) => {
68
+ const schematicsWithTests = [
69
+ 'class',
70
+ 'component',
71
+ 'directive',
72
+ 'guard',
73
+ 'interceptor',
74
+ 'pipe',
75
+ 'resolver',
76
+ 'service',
77
+ ];
78
+ schematicsWithTests.forEach((type) => {
69
79
  if (!(`@schematics/angular:${type}` in schematics)) {
70
80
  schematics[`@schematics/angular:${type}`] = {};
71
81
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schematics/angular",
3
- "version": "13.2.0-next.1",
3
+ "version": "13.2.0-next.2",
4
4
  "description": "Schematics specific to Angular",
5
5
  "homepage": "https://github.com/angular/angular-cli",
6
6
  "keywords": [
@@ -15,8 +15,8 @@
15
15
  ],
16
16
  "schematics": "./collection.json",
17
17
  "dependencies": {
18
- "@angular-devkit/core": "13.2.0-next.1",
19
- "@angular-devkit/schematics": "13.2.0-next.1",
18
+ "@angular-devkit/core": "13.2.0-next.2",
19
+ "@angular-devkit/schematics": "13.2.0-next.2",
20
20
  "jsonc-parser": "3.0.0"
21
21
  },
22
22
  "repository": {
@@ -5,14 +5,14 @@
5
5
  "dependencies": {
6
6
  "@types/jasmine": "~3.10.0",
7
7
  "@types/node": "^12.11.1",
8
- "jasmine-core": "~3.10.0",
8
+ "jasmine-core": "~4.0.0",
9
9
  "karma-chrome-launcher": "~3.1.0",
10
10
  "karma-coverage": "~2.1.0",
11
11
  "karma-jasmine-html-reporter": "~1.7.0",
12
12
  "karma-jasmine": "~4.0.0",
13
13
  "karma": "~6.3.0",
14
14
  "ng-packagr": "^13.0.0",
15
- "rxjs": "~7.4.0",
15
+ "rxjs": "~7.5.0",
16
16
  "tslib": "^2.3.0",
17
17
  "typescript": "~4.5.2",
18
18
  "zone.js": "~0.11.4"
@@ -1,20 +1,18 @@
1
1
  # See http://help.github.com/ignore-files/ for more about ignoring files.
2
2
 
3
- # compiled output
3
+ # Compiled output
4
4
  /dist
5
5
  /tmp
6
6
  /out-tsc
7
- # Only exists if Bazel was run
8
7
  /bazel-out
9
8
 
10
- # dependencies
9
+ # Node
11
10
  /node_modules
12
-
13
- # profiling files
14
- chrome-profiler-events*.json
11
+ npm-debug.log
12
+ yarn-error.log
15
13
 
16
14
  # IDEs and editors
17
- /.idea
15
+ .idea/
18
16
  .project
19
17
  .classpath
20
18
  .c9/
@@ -22,7 +20,7 @@ chrome-profiler-events*.json
22
20
  .settings/
23
21
  *.sublime-workspace
24
22
 
25
- # IDE - VSCode
23
+ # Visual Studio Code
26
24
  .vscode/*
27
25
  !.vscode/settings.json
28
26
  !.vscode/tasks.json
@@ -30,17 +28,15 @@ chrome-profiler-events*.json
30
28
  !.vscode/extensions.json
31
29
  .history/*
32
30
 
33
- # misc
31
+ # Miscellaneous
34
32
  /.angular/cache
35
- /.sass-cache
33
+ .sass-cache/
36
34
  /connect.lock
37
35
  /coverage
38
36
  /libpeerconnection.log
39
- npm-debug.log
40
- yarn-error.log
41
37
  testem.log
42
38
  /typings
43
39
 
44
- # System Files
40
+ # System files
45
41
  .DS_Store
46
42
  Thumbs.db