| .. | .. |
|---|
| 4 | 4 | */ |
|---|
| 5 | 5 | (function (global) { |
|---|
| 6 | 6 | |
|---|
| 7 | | - var ANGULAR_LIBS = ['core', 'http', 'common', 'compiler', 'material', 'flex-layout', // |
|---|
| 7 | + var ANGULAR_LIBS = ['core', 'http', 'common', 'compiler', 'material', 'flex-layout', 'animations', // |
|---|
| 8 | 8 | 'router', 'forms', 'platform-browser', 'platform-browser-dynamic', 'common']; |
|---|
| 9 | 9 | var COVALENT_LIBS = ['core', 'http', 'dynamic-forms']; |
|---|
| 10 | 10 | var mapping = { |
|---|
| .. | .. |
|---|
| 12 | 12 | main: 'src/main.js', |
|---|
| 13 | 13 | 'app': 'src/app', |
|---|
| 14 | 14 | 'environments': 'src/environments', |
|---|
| 15 | + '@angular/animations/browser': 'npm:@angular/animations/bundles/animations-browser.umd.js', |
|---|
| 16 | + '@angular/platform-browser/animations': 'npm:@angular/platform-browser/bundles/platform-browser-animations.umd.js', |
|---|
| 15 | 17 | |
|---|
| 16 | 18 | // other libraries |
|---|
| 17 | 19 | 'rxjs': 'npm:rxjs', |
|---|
| .. | .. |
|---|
| 22 | 24 | } |
|---|
| 23 | 25 | |
|---|
| 24 | 26 | ANGULAR_LIBS.forEach(function (libName) { |
|---|
| 25 | | - mapping['@angular/' + libName] = 'npm:@angular/' + libName + '/bundles/' + libName + '.umd.js'; |
|---|
| 27 | + mapping['@angular/' + libName] = 'npm:@angular/' + libName + '/bundles/' + libName + '.umd.js'; |
|---|
| 26 | 28 | }); |
|---|
| 27 | 29 | |
|---|
| 28 | 30 | COVALENT_LIBS.forEach(function (libName) { |
|---|