Skip to content
Snippets Groups Projects
Commit f54595db authored by jvanboxtel@wisc.edu's avatar jvanboxtel@wisc.edu
Browse files

Update to Angular 7

parent 74b5bbe5
No related branches found
No related tags found
No related merge requests found
...@@ -127,6 +127,7 @@ hs_err_pid* ...@@ -127,6 +127,7 @@ hs_err_pid*
# mpeltonen/sbt-idea plugin # mpeltonen/sbt-idea plugin
.idea_modules/ .idea_modules/
/node_modules/ /node_modules/
/dist/
# JIRA plugin # JIRA plugin
atlassian-ide-plugin.xml atlassian-ide-plugin.xml
......
This diff is collapsed.
...@@ -7,54 +7,55 @@ ...@@ -7,54 +7,55 @@
"build": "ng build", "build": "ng build",
"test": "ng test", "test": "ng test",
"lint": "ng lint", "lint": "ng lint",
"e2e": "ng e2e" "e2e": "ng e2e",
"postinstall": "npm start"
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "^6.1.10", "@angular/animations": "^7.0.0",
"@angular/cdk": "^6.4.7", "@angular/cdk": "^7.0.0",
"@angular/common": "^6.1.9", "@angular/common": "^7.0.0",
"@angular/compiler": "^6.1.9", "@angular/compiler": "^7.0.0",
"@angular/core": "^6.1.9", "@angular/core": "^7.0.0",
"@angular/flex-layout": "^6.0.0-beta.18", "@angular/flex-layout": "^7.0.0-beta.19",
"@angular/forms": "^6.1.9", "@angular/forms": "^7.0.0",
"@angular/http": "^6.1.9", "@angular/http": "^7.0.0",
"@angular/material": "^6.4.7", "@angular/material": "^7.0.0",
"@angular/platform-browser": "^6.1.9", "@angular/platform-browser": "^7.0.0",
"@angular/platform-browser-dynamic": "^6.1.9", "@angular/platform-browser-dynamic": "^7.0.0",
"@angular/router": "^6.1.9", "@angular/router": "^7.0.0",
"classlist.js": "^1.1.20150312",
"core-js": "^2.5.4",
"intl": "^1.2.5",
"rxjs": "^6.3.3",
"zone.js": "~0.8.26",
"@myuw-web-components/myuw-app-bar": "^1.5.4", "@myuw-web-components/myuw-app-bar": "^1.5.4",
"@myuw-web-components/myuw-app-styles": "^1.2.3", "@myuw-web-components/myuw-app-styles": "^1.2.3",
"@myuw-web-components/myuw-drawer": "^1.0.6", "@myuw-web-components/myuw-drawer": "^1.0.6",
"@myuw-web-components/myuw-help": "^1.3.1", "@myuw-web-components/myuw-help": "^1.3.1",
"@myuw-web-components/myuw-profile": "^1.3.1", "@myuw-web-components/myuw-profile": "^1.3.1",
"@myuw-web-components/myuw-search": "^1.3.1", "@myuw-web-components/myuw-search": "^1.3.1",
"@webcomponents/webcomponentsjs": "^2.1.3", "@webcomponents/webcomponentsjs": "^2.1.3"
"classlist.js": "^1.1.20150312",
"core-js": "^2.5.4",
"intl": "^1.2.5",
"rxjs": "^6.3.3",
"zone.js": "~0.8.26"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "^0.7.5", "@angular-devkit/build-angular": "^0.10.1",
"@angular/cli": "^6.2.5", "@angular/cli": "^7.0.1",
"@angular/compiler-cli": "^6.1.10", "@angular/compiler-cli": "^7.0.0",
"@angular/language-service": "^6.1.10", "@angular/language-service": "^7.0.0",
"@types/jasmine": "^2.8.9", "@types/jasmine": "^2.8.9",
"@types/jasminewd2": "^2.0.5", "@types/jasminewd2": "^2.0.5",
"@types/node": "~8.9.4", "@types/node": "~10.12.0",
"codelyzer": "~4.2.1", "codelyzer": "~4.5.0",
"jasmine-core": "~2.99.1", "jasmine-core": "~3.2.1",
"jasmine-spec-reporter": "~4.2.1", "jasmine-spec-reporter": "~4.2.1",
"karma": "~1.7.1", "karma": "~3.1.0",
"karma-chrome-launcher": "~2.2.0", "karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.4", "karma-coverage-istanbul-reporter": "^2.0.4",
"karma-jasmine": "~1.1.1", "karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2", "karma-jasmine-html-reporter": "^1.3.1",
"protractor": "^5.4.1", "protractor": "^5.4.1",
"ts-node": "~5.0.1", "ts-node": "~7.0.1",
"tslint": "~5.9.1", "tslint": "~5.11.0",
"typescript": "^2.9.2" "typescript": "~3.1.3"
} }
} }
...@@ -5,7 +5,7 @@ import { AppComponent } from './app.component'; ...@@ -5,7 +5,7 @@ import { AppComponent } from './app.component';
import { HomeComponent } from './home/home.component'; import { HomeComponent } from './home/home.component';
const routes: Routes = [ const routes: Routes = [
{ path: 'degree-planner', component: HomeComponent } { path: '', component: HomeComponent }
]; ];
@NgModule({ @NgModule({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment