Skip to content

Commit 2ce2fc5

Browse files
John PapaJohn Papa
John Papa
authored and
John Papa
committed
updated to use the new in memory api that works with tslib and httpclient
1 parent 8eb73ed commit 2ce2fc5

File tree

67 files changed

+16902
-9
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+16902
-9
lines changed

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
11
# Angular First Look
22

3-
### for Pluralsight
3+
## For Pluralsight
44

55
The code in this repo is the source for what becomes the plunkers located [https://github.com/johnpapa/angular-first-look-hosted](https://github.com/johnpapa/angular-first-look-hosted)
66

77
> Note: The plunkers are the recommended way to run the code. However, if you wish to explore, instructions can be found below. This repo is not part of the course ... this is intended to be extra credit ... fun ... for those who are curious :)
88
9-
# Getting Started
9+
## Getting Started
1010

1111
Fork and clone this repo ...
1212

13-
```
13+
```bash
1414
git clone [email protected]:johnpapa/angular-first-look-examples.git ng-ex
1515
cd ng-ex
1616
rm -rf .git/
1717
npm i
1818
```
1919

20-
2120
Prep the Examples
2221

23-
```
22+
```bash
2423
cd _examples
2524
npm i
2625
cd ..
@@ -29,13 +28,11 @@ npm run all
2928

3029
Run an example
3130

32-
```
31+
```bash
3332
cd _examples/component-simple/
3433
npm start
3534
```
3635

3736
Each example is located in its own folder under `_examples/`. Feel free to explore them. You may run `npm start` in those respective folders, if you wish to run them locally.
3837

3938
Reminder ... The other files in this repo are here for helping create the plunkers. Focus only on the files in the`_examples/xxx` folders.
40-
41-

_examples/compare/angular/2-way/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,13 +289,15 @@ <h3>{{title}}</h3>
289289
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
290290
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
291291
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
292+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
292293
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
293294
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
294295
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
295296
296297
// other libraries
297298
'rxjs': 'npm:[email protected]',
298299
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
300+
'tslib': 'npm:tslib/tslib.js',
299301
'ts': 'npm:[email protected]/lib/plugin.js',
300302
'typescript': 'npm:[email protected]/lib/typescript.js'
301303
},

_examples/compare/angular/binding-events/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,13 +326,15 @@ <h3>{{title}}</h3>
326326
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
327327
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
328328
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
329+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
329330
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
330331
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
331332
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
332333
333334
// other libraries
334335
'rxjs': 'npm:[email protected]',
335336
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
337+
'tslib': 'npm:tslib/tslib.js',
336338
'ts': 'npm:[email protected]/lib/plugin.js',
337339
'typescript': 'npm:[email protected]/lib/typescript.js'
338340
},

_examples/compare/angular/component/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,13 +272,15 @@ <h3 [innerText]=&quot;story.name&quot;></h3>
272272
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
273273
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
274274
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
275+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
275276
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
276277
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
277278
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
278279
279280
// other libraries
280281
'rxjs': 'npm:[email protected]',
281282
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
283+
'tslib': 'npm:tslib/tslib.js',
282284
'ts': 'npm:[email protected]/lib/plugin.js',
283285
'typescript': 'npm:[email protected]/lib/typescript.js'
284286
},

_examples/compare/angular/http/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -497,13 +497,15 @@
497497
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
498498
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
499499
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
500+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
500501
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
501502
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
502503
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
503504
504505
// other libraries
505506
'rxjs': 'npm:[email protected]',
506507
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
508+
'tslib': 'npm:tslib/tslib.js',
507509
'ts': 'npm:[email protected]/lib/plugin.js',
508510
'typescript': 'npm:[email protected]/lib/typescript.js'
509511
},

_examples/compare/angular/property-binding/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,13 +293,15 @@ <h3>{{title}}</h3>
293293
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
294294
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
295295
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
296+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
296297
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
297298
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
298299
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
299300
300301
// other libraries
301302
'rxjs': 'npm:[email protected]',
302303
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
304+
'tslib': 'npm:tslib/tslib.js',
303305
'ts': 'npm:[email protected]/lib/plugin.js',
304306
'typescript': 'npm:[email protected]/lib/typescript.js'
305307
},

_examples/compare/angular/services/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,13 +304,15 @@ <h3>You have {{vehicles.length}} vehicles</h3>
304304
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
305305
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
306306
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
307+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
307308
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
308309
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
309310
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
310311
311312
// other libraries
312313
'rxjs': 'npm:[email protected]',
313314
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
315+
'tslib': 'npm:tslib/tslib.js',
314316
'ts': 'npm:[email protected]/lib/plugin.js',
315317
'typescript': 'npm:[email protected]/lib/typescript.js'
316318
},

_examples/compare/angular/structural-directives/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,13 +285,15 @@ <h3>You have {{vehicles.length}} vehicles</h3>
285285
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
286286
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
287287
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
288+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
288289
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
289290
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
290291
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
291292
292293
// other libraries
293294
'rxjs': 'npm:[email protected]',
294295
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
296+
'tslib': 'npm:tslib/tslib.js',
295297
'ts': 'npm:[email protected]/lib/plugin.js',
296298
'typescript': 'npm:[email protected]/lib/typescript.js'
297299
},

_examples/compare/angularjs/2-way/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,15 @@ <h3>{{vm.title}}</h3>
8484
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
8585
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
8686
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
87+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
8788
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
8889
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
8990
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
9091
9192
// other libraries
9293
'rxjs': 'npm:[email protected]',
9394
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
95+
'tslib': 'npm:tslib/tslib.js',
9496
'ts': 'npm:[email protected]/lib/plugin.js',
9597
'typescript': 'npm:[email protected]/lib/typescript.js'
9698
},

_examples/compare/angularjs/binding-events/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,15 @@ <h3>{{vm.title}}</h3>
109109
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
110110
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
111111
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
112+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
112113
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
113114
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
114115
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
115116
116117
// other libraries
117118
'rxjs': 'npm:[email protected]',
118119
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
120+
'tslib': 'npm:tslib/tslib.js',
119121
'ts': 'npm:[email protected]/lib/plugin.js',
120122
'typescript': 'npm:[email protected]/lib/typescript.js'
121123
},

_examples/compare/angularjs/controller/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,15 @@ <h3 ng-bind=&quot;vm.story.name&quot;></h3>
7979
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
8080
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
8181
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
82+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
8283
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
8384
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
8485
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
8586
8687
// other libraries
8788
'rxjs': 'npm:[email protected]',
8889
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
90+
'tslib': 'npm:tslib/tslib.js',
8991
'ts': 'npm:[email protected]/lib/plugin.js',
9092
'typescript': 'npm:[email protected]/lib/typescript.js'
9193
},

_examples/compare/angularjs/http/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,13 +259,15 @@ <h3>You have {{vm.vehicles.length}} vehicles</h3>
259259
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
260260
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
261261
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
262+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
262263
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
263264
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
264265
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
265266
266267
// other libraries
267268
'rxjs': 'npm:[email protected]',
268269
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
270+
'tslib': 'npm:tslib/tslib.js',
269271
'ts': 'npm:[email protected]/lib/plugin.js',
270272
'typescript': 'npm:[email protected]/lib/typescript.js'
271273
},

_examples/compare/angularjs/property-binding/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,15 @@ <h3>{{vm.title}}</h3>
100100
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
101101
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
102102
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
103+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
103104
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
104105
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
105106
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
106107
107108
// other libraries
108109
'rxjs': 'npm:[email protected]',
109110
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
111+
'tslib': 'npm:tslib/tslib.js',
110112
'ts': 'npm:[email protected]/lib/plugin.js',
111113
'typescript': 'npm:[email protected]/lib/typescript.js'
112114
},

_examples/compare/angularjs/services/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,15 @@ <h3>You have {{vm.vehicles.length}} vehicles</h3>
107107
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
108108
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
109109
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
110+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
110111
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
111112
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
112113
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
113114
114115
// other libraries
115116
'rxjs': 'npm:[email protected]',
116117
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
118+
'tslib': 'npm:tslib/tslib.js',
117119
'ts': 'npm:[email protected]/lib/plugin.js',
118120
'typescript': 'npm:[email protected]/lib/typescript.js'
119121
},

_examples/compare/angularjs/structural-directives/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,15 @@ <h3>You have {{vm.vehicles.length}} vehicles</h3>
8686
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
8787
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
8888
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
89+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
8990
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
9091
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
9192
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
9293
9394
// other libraries
9495
'rxjs': 'npm:[email protected]',
9596
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
97+
'tslib': 'npm:tslib/tslib.js',
9698
'ts': 'npm:[email protected]/lib/plugin.js',
9799
'typescript': 'npm:[email protected]/lib/typescript.js'
98100
},

_examples/component-input-output/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -545,13 +545,15 @@ <h3>Component Demo</h3>
545545
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
546546
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
547547
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
548+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
548549
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
549550
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
550551
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
551552
552553
// other libraries
553554
'rxjs': 'npm:[email protected]',
554555
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
556+
'tslib': 'npm:tslib/tslib.js',
555557
'ts': 'npm:[email protected]/lib/plugin.js',
556558
'typescript': 'npm:[email protected]/lib/typescript.js'
557559
},

_examples/component-nest/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,13 +332,15 @@
332332
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
333333
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
334334
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
335+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
335336
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
336337
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
337338
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
338339
339340
// other libraries
340341
'rxjs': 'npm:[email protected]',
341342
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
343+
'tslib': 'npm:tslib/tslib.js',
342344
'ts': 'npm:[email protected]/lib/plugin.js',
343345
'typescript': 'npm:[email protected]/lib/typescript.js'
344346
},

_examples/component-simple/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,13 +275,15 @@
275275
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
276276
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
277277
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
278+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
278279
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
279280
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
280281
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
281282
282283
// other libraries
283284
'rxjs': 'npm:[email protected]',
284285
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
286+
'tslib': 'npm:tslib/tslib.js',
285287
'ts': 'npm:[email protected]/lib/plugin.js',
286288
'typescript': 'npm:[email protected]/lib/typescript.js'
287289
},

_examples/data-binding/plnkr.no-link.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8508,13 +8508,15 @@ <h4>{{character.name | uppercase}}</h4>
85088508
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
85098509
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
85108510
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
8511+
'@angular/common/http': 'npm:@angular/common/bundles/common-http.umd.js',
85118512
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
85128513
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
85138514
'@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
85148515
85158516
// other libraries
85168517
'rxjs': 'npm:[email protected]',
85178518
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
8519+
'tslib': 'npm:tslib/tslib.js',
85188520
'ts': 'npm:[email protected]/lib/plugin.js',
85198521
'typescript': 'npm:[email protected]/lib/typescript.js'
85208522
},

0 commit comments

Comments
 (0)