Skip to content

Commit 9bd113d

Browse files
committed
Changing version of terser dependency
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.
1 parent 506ac3f commit 9bd113d

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
lines changed

package-lock.json

+7-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"jquery": "^3.3.1",
3232
"path": "^0.12.7",
3333
"rxjs": "~6.3.3",
34+
"terser": "^3.14.1",
3435
"tslib": "^1.9.0",
3536
"typescript": "~3.2.2",
3637
"zone.js": "~0.8.26"

src/app/car-timer/car-timer.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ <h3>{{title}}</h3>
77
<form>
88
<div class="form-group row">
99
<div class="col-lg-12">
10-
<input type="button" class="btn btn-primary" id="{{type}}-updateCarBtn" value="Update Car Delivery Timer" (click)='startTimer()'/>
10+
<input type="button" class="btn btn-primary" id="updateCarBtn" value="Update Car Delivery Timer" (click)='startTimer()'/>
1111
</div>
1212
</div>
1313
<div class="form-group row">

0 commit comments

Comments
 (0)