Skip to content

Commit

Permalink
19cefbd8a ci: group babel packages renovate group name
Browse files Browse the repository at this point in the history
  • Loading branch information
Angular Builds committed Sep 9, 2019
1 parent 8e4f8af commit 4afd999
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion application/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function addAppToWorkspaceFile(options, appDir) {
}
schematics['@schematics/angular:component'] = componentSchematicsOptions;
}
if (options.skipTests === true) {
if (options.skipTests || options.minimal) {
['class', 'component', 'directive', 'guard', 'module', 'pipe', 'service'].forEach((type) => {
if (!(`@schematics/angular:${type}` in schematics)) {
schematics[`@schematics/angular:${type}`] = {};
Expand Down
5 changes: 5 additions & 0 deletions migrations/migration-collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@
"version": "9.0.0-beta.0",
"factory": "./update-9",
"description": "Update an Angular CLI project to version 9."
},
"migration-10": {
"version": "9.0.0-next.6",
"factory": "./update-8/#updateLazyModulePaths",
"description": "Update lazy loading syntax to use dynamic imports."
}
}
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@schematics/angular",
"version": "9.0.0-next.3+2.366e51b",
"version": "9.0.0-next.3+6.19cefbd",
"description": "Schematics specific to Angular",
"keywords": [
"angular",
Expand All @@ -14,8 +14,8 @@
],
"schematics": "./collection.json",
"dependencies": {
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#366e51be0",
"@angular-devkit/schematics": "github:angular/angular-devkit-schematics-builds#366e51be0"
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#19cefbd8a",
"@angular-devkit/schematics": "github:angular/angular-devkit-schematics-builds#19cefbd8a"
},
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe('<%= classify(name) %>Service', () => {

beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.get(<%= classify(name) %>Service);
service = TestBed.inject(<%= classify(name) %>Service);
});

it('should be created', () => {
Expand Down
2 changes: 1 addition & 1 deletion uniqueId
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Mon Sep 09 2019 21:35:19 GMT+0000 (Coordinated Universal Time)
Mon Sep 09 2019 21:36:55 GMT+0000 (Coordinated Universal Time)

0 comments on commit 4afd999

Please sign in to comment.