Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix "Error" when using jspm v0.17.0-beta.35
jspm v0.17.0-beta.35 throw an error when it used with karma-jspm v2.2.0: ```bash Uncaught Error: Setting `SystemJS.bundles` directly is no longer supported. Use `SystemJS.config({ bundles: ... })`. ``` This commit will solve this issue. Instead of `System.bundles = [];`, `System.config({ bundles: [] });` should be used.
- Loading branch information