Skip to content

Commit

Permalink
chore: upgrade dependencies, work around angular-cli/issues/11673
Browse files Browse the repository at this point in the history
  • Loading branch information
ersimont committed Jul 26, 2018
1 parent 3d8d86f commit 943e7b1
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 121 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ install:
script:
- yarn test ng-app-state --code-coverage --watch=false --progress=false --browsers=ChromeHeadlessCI
- yarn build ng-app-state --prod
# workaround for https://github.com/angular/angular-cli/issues/11673
- mv dist/lib dist/ng-app-state
- yarn e2e --protractor-config=./e2e/protractor-ci.conf.js

after_success:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"devDependencies": {
"@angular-devkit/build-angular": "~0.6.0",
"@angular-devkit/build-ng-packagr": "~0.6.0",
"@angular/cli": "~6.0.0",
"@angular/cli": "~6.1.0",
"@angular/compiler-cli": "^6.0.0",
"@angular/language-service": "^6.0.0",
"@types/jasmine": "~2.8.6",
Expand All @@ -58,4 +58,4 @@
"tslint-config-prettier": "^1.12.0",
"typescript": "~2.7.2"
}
}
}
2 changes: 1 addition & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class AppComponent {
chooseToCheck() {
this.store('checkMany').set(
mapValues(
keyBy(this.store.state().chooseMany, (city) => city),
keyBy<string>(this.store.state().chooseMany, (city) => city),
() => true,
),
);
Expand Down

0 comments on commit 943e7b1

Please sign in to comment.