Skip to content

Commit 4bb54a6

Browse files
authored
Update Dependency Versions (#227)
- update angular version to angular 8 - update additional dependencies - remove core-js dependency
1 parent 9ee9681 commit 4bb54a6

32 files changed

+71
-74
lines changed

karma-shim.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import 'core-js';
21
import 'zone.js/dist/zone';
32
import 'zone.js/dist/long-stack-trace-zone';
43
import 'zone.js/dist/proxy.js';

package.json

Lines changed: 31 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -47,43 +47,41 @@
4747
"e2e": "ng e2e"
4848
},
4949
"devDependencies": {
50-
"@angular-devkit/build-angular": "~0.13.0",
51-
"@angular-devkit/build-ng-packagr": "~0.13.0",
52-
"@angular/cli": "~7.3.5",
53-
"@angular/common": "^7.2.8",
54-
"@angular/compiler": "^7.2.8",
55-
"@angular/compiler-cli": "^7.2.8",
56-
"@angular/core": "^7.2.8",
57-
"@angular/forms": "^7.2.8",
58-
"@angular/http": "^7.2.8",
59-
"@angular/language-service": "^7.2.8",
60-
"@angular/platform-browser": "^7.2.8",
61-
"@angular/platform-browser-dynamic": "^7.2.8",
62-
"@angular/router": "^7.2.8",
50+
"@angular-devkit/build-angular": "~0.802.1",
51+
"@angular-devkit/build-ng-packagr": "~0.802.1",
52+
"@angular/cli": "~8.2.1",
53+
"@angular/common": "^8.2.1",
54+
"@angular/compiler": "^8.2.1",
55+
"@angular/compiler-cli": "^8.2.1",
56+
"@angular/core": "^8.2.1",
57+
"@angular/forms": "^8.2.1",
58+
"@angular/language-service": "^8.2.1",
59+
"@angular/platform-browser": "^8.2.1",
60+
"@angular/platform-browser-dynamic": "^8.2.1",
61+
"@angular/router": "^8.2.1",
6362
"@earshinov/extract-scss-variables": "^0.1.1",
64-
"@types/jasmine": "~2.8.8",
65-
"@types/jasminewd2": "~2.0.3",
66-
"@types/node": "~8.9.4",
67-
"codelyzer": "~4.3.0",
68-
"core-js": "^2.5.4",
69-
"jasmine-core": "~2.99.1",
63+
"@types/jasmine": "~3.4.0",
64+
"@types/jasminewd2": "~2.0.6",
65+
"@types/node": "~12.7.1",
66+
"codelyzer": "^5.1.0",
67+
"jasmine-core": "~3.4.0",
7068
"jasmine-spec-reporter": "~4.2.1",
71-
"karma": "~3.0.0",
72-
"karma-chrome-launcher": "~2.2.0",
73-
"karma-coverage-istanbul-reporter": "~2.0.1",
74-
"karma-jasmine": "~1.1.2",
75-
"karma-jasmine-html-reporter": "^0.2.2",
76-
"ng-packagr": "^4.1.0",
69+
"karma": "~4.2.0",
70+
"karma-chrome-launcher": "~3.0.0",
71+
"karma-coverage-istanbul-reporter": "~2.1.0",
72+
"karma-jasmine": "~2.0.1",
73+
"karma-jasmine-html-reporter": "^1.4.2",
74+
"ng-packagr": "^5.3.0",
7775
"node-sass": "^4.12.0",
7876
"protractor": "~5.4.0",
79-
"rxjs": "~6.4.0",
80-
"scss-bundle": "^2.5.0",
81-
"ts-node": "~7.0.0",
82-
"tsickle": ">=0.34.0",
83-
"tslib": "^1.9.0",
84-
"tslint": "~5.11.0",
85-
"typescript": "~3.2.4",
86-
"zone.js": "~0.8.29"
77+
"rxjs": "~6.5.2",
78+
"scss-bundle": "^2.5.1",
79+
"ts-node": "~8.3.0",
80+
"tsickle": "^0.36.0",
81+
"tslib": "^1.10.0",
82+
"tslint": "~5.18.0",
83+
"typescript": "~3.5.3",
84+
"zone.js": "~0.9.1"
8785
},
8886
"peerDependencies": {
8987
"@angular/common": ">= 5"

src/lib/components/wizard-completion-step.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {WizardComponent} from './wizard.component';
2424
})
2525
class WizardTestComponent {
2626

27-
@ViewChild(WizardComponent)
27+
@ViewChild(WizardComponent, {static: false})
2828
public wizard: WizardComponent;
2929

3030
public isValid: any = true;

src/lib/components/wizard-navigation-bar.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import {WizardComponent} from './wizard.component';
2626
class WizardTestComponent {
2727
public firstStepId = 'step1';
2828

29-
@ViewChild(WizardComponent)
29+
@ViewChild(WizardComponent, {static: false})
3030
public wizard: WizardComponent;
3131
}
3232

src/lib/components/wizard-step.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {WizardComponent} from './wizard.component';
2424
})
2525
class WizardTestComponent {
2626

27-
@ViewChild(WizardComponent)
27+
@ViewChild(WizardComponent, {static: false})
2828
public wizard: WizardComponent;
2929

3030
public isValid: any = true;

src/lib/components/wizard.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class WizardTestComponent implements AfterViewInit {
3434
public showStep1 = true;
3535
public showStep3 = true;
3636

37-
@ViewChild(WizardComponent)
37+
@ViewChild(WizardComponent, {static: false})
3838
public wizard: WizardComponent;
3939

4040
constructor(private _changeDetectionRef: ChangeDetectorRef) {

src/lib/directives/completed-step.directive.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {WizardComponent} from '../components/wizard.component';
1515
`
1616
})
1717
class WizardTestComponent {
18-
@ViewChild(WizardComponent)
18+
@ViewChild(WizardComponent, {static: false})
1919
public wizard: WizardComponent;
2020
}
2121

src/lib/directives/enable-back-links.directive.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {WizardComponent} from '../components/wizard.component';
2525
})
2626
class WizardTestComponent {
2727

28-
@ViewChild(WizardComponent)
28+
@ViewChild(WizardComponent, {static: false})
2929
public wizard: WizardComponent;
3030

3131
public isValid: any = true;

src/lib/directives/go-to-step.directive.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import {WizardComponent} from '../components/wizard.component';
4141
})
4242
class WizardTestComponent {
4343

44-
@ViewChild(WizardComponent)
44+
@ViewChild(WizardComponent, {static: false})
4545
public wizard: WizardComponent;
4646

4747
public goToSecondStep = 1;

src/lib/directives/next-step.directive.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import {WizardComponent} from '../components/wizard.component';
3030
})
3131
class WizardTestComponent {
3232

33-
@ViewChild(WizardComponent)
33+
@ViewChild(WizardComponent, {static: false})
3434
public wizard: WizardComponent;
3535

3636
public eventLog: Array<string> = [];

0 commit comments

Comments
 (0)