From e7104810768b44f65f07575eacdf0113465312de Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Thu, 10 Nov 2016 17:42:29 +0000 Subject: [PATCH] fix missing systemjs.config.extras --- public/docs/_examples/.gitignore | 1 + .../_examples/upgrade-adapter/ts/systemjs.config.extras.js | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 public/docs/_examples/upgrade-adapter/ts/systemjs.config.extras.js diff --git a/public/docs/_examples/.gitignore b/public/docs/_examples/.gitignore index b6733dc6ea..52b370600f 100644 --- a/public/docs/_examples/.gitignore +++ b/public/docs/_examples/.gitignore @@ -16,5 +16,6 @@ _test-output !**/*e2e-spec.js !systemjs.config.1.js +!**/systemjs.config.extras.js !_boilerplate/* _boilerplate/a2docs.css diff --git a/public/docs/_examples/upgrade-adapter/ts/systemjs.config.extras.js b/public/docs/_examples/upgrade-adapter/ts/systemjs.config.extras.js new file mode 100644 index 0000000000..607b668e68 --- /dev/null +++ b/public/docs/_examples/upgrade-adapter/ts/systemjs.config.extras.js @@ -0,0 +1,7 @@ +// #docregion +/** App specific SystemJS configuration */ +System.config({ + map: { + '@angular/upgrade/static': 'npm:@angular/upgrade/bundles/upgrade-static.umd.js', + } +});