Skip to content
This repository has been archived by the owner on Jun 15, 2020. It is now read-only.

Commit

Permalink
Added missing es6-shim (see #55)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsebastien committed Jan 22, 2016
1 parent b9e2550 commit d3a70fa
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
13 changes: 7 additions & 6 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,23 @@
* cleaned boot.ts code regarding Angular 2's location strategies (cfr #62)
* added a dependency on karma-jspm in the generated projects (previously part of the build)
* added missing expect import in the tests (closes #68)
* fixed the issue with .gitignore that was not copied
* fixed the issue with .gitignore that was not copied (closes #64)
* added missing es6-shim (closes #55)
* 0.2.1
* updated gitignore for typings
* 0.2.0
* now supports Angular 2 beta 1
* now uses modernWebDevBuild 0.3.x: https://github.com/dsebastien/modernWebDevBuild/releases/tag/0.3.0
* switched from tsd to typings for TypeScript typings management (new kid in town)
* typings supports typings on DefinitelyTyped but has a lot more to offer
* check out the following links
* https://github.com/typings/typings
* https://angularclass.com/the-state-of-typescript-packages/
* typings supports typings on DefinitelyTyped but has a lot more to offer
* check out the following links
* https://github.com/typings/typings
* https://angularclass.com/the-state-of-typescript-packages/
* upgraded babel dependencies
* added Jasmine imports in the provided unit tests
* 0.1.4
* added a update check: you will be notified whenever a new version of the generator is available
* you can disable the update check by passing the following flag: `--no-update-notifier`
* you can disable the update check by passing the following flag: `--no-update-notifier`
* 0.1.3
* now uses modernWebDevBuild 0.2.x
* disabled HTML minification by default (not supported by Angular 2 anymore: https://github.com/dsebastien/modernWebDevBuild/issues/67)
Expand Down
11 changes: 7 additions & 4 deletions app/templates/applicationTemplates/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,15 @@
Loading ...
</app>

<!--
Angular 2 polyfills (zone.js, reflect-metadata, ...) must be loaded BEFORE SystemJS
-->

<!-- Polyfills: must all be loaded before SystemJS -->

<!-- ES6 Shim (ES2015 support) -->
<!-- inline node_modules/es6-shim/es6-shim.js -->
<script inline src="node_modules/es6-shim/es6-shim.js"></script>
<!-- inline node_modules/angular2/bundles/angular2-polyfills.js -->
<script inline src="node_modules/angular2/bundles/angular2-polyfills.js"></script>

<!-- build:js-app -->
<!-- for production, this is all replaced by a minified bundle -->
<script src="jspm_packages/system.src.js"></script>
Expand Down

0 comments on commit d3a70fa

Please sign in to comment.