Skip to content

Commit

Permalink
Changing version of terser dependency
Browse files Browse the repository at this point in the history
Changing version of terser dependency since it was throwing an error during prod compilaton. See: angular/angular-cli#13582

I also realized I accidentally had a reference to a 'type' field in the car timer component, so removing that.
  • Loading branch information
ericrbaker committed Feb 6, 2019
1 parent 506ac3f commit 9bd113d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
19 changes: 7 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"jquery": "^3.3.1",
"path": "^0.12.7",
"rxjs": "~6.3.3",
"terser": "^3.14.1",
"tslib": "^1.9.0",
"typescript": "~3.2.2",
"zone.js": "~0.8.26"
Expand Down
2 changes: 1 addition & 1 deletion src/app/car-timer/car-timer.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h3>{{title}}</h3>
<form>
<div class="form-group row">
<div class="col-lg-12">
<input type="button" class="btn btn-primary" id="{{type}}-updateCarBtn" value="Update Car Delivery Timer" (click)='startTimer()'/>
<input type="button" class="btn btn-primary" id="updateCarBtn" value="Update Car Delivery Timer" (click)='startTimer()'/>
</div>
</div>
<div class="form-group row">
Expand Down

0 comments on commit 9bd113d

Please sign in to comment.