We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using 6to5 and bundle-sfx option I get following message in the browser console:
bundle-sfx
Uncaught Module angular not present.
No problems at all when using traceur.
Here is my app.js snippet:
import angular from 'angular'; import 'angular-animate'; import 'angular-growl'; import 'angular-route'; import 'bootstrap/css/bootstrap.css!'; import './todo/todo.css!'; import { todoModule } from './todo/module' import { gitHubModule } from './github/module'; import { Routes } from './Routes'; ...
build.jscreated with 6to5 looks like this:
build.js
6to5
... System.register("lib/app", ["angular", "angular-animate", "angular-growl", "angular-route", "bootstrap/css/bootstrap.css!", "./todo/todo.css!", "./todo/module", "./github/module", "./Routes"], function(_export) { ...
and the same line in build.jswhen using traceur:
traceur
... System.register("lib/app", ["github:angular/bower-angular@1.3.8", "github:angular/bower-angular-animate@1.3.8", "github:marcorinck/angular-growl@0.4.0", "github:angular/bower-angular-route@1.3.8", "github:twbs/bootstrap@3.3.2/css/bootstrap.css!github:systemjs/plugin-css@0.1.0", "lib/todo/todo.css!github:systemjs/plugin-css@0.1.0", "lib/todo/module", "lib/github/module", "lib/Routes"], function($__export) { ...
Notice the differences in dep. array.
The text was updated successfully, but these errors were encountered:
Thanks so much for letting me know so clearly! Moving to systemjs/builder#60.
Sorry, something went wrong.
No branches or pull requests
When using 6to5 and
bundle-sfx
option I get following message in the browser console:No problems at all when using traceur.
Here is my app.js snippet:
build.js
created with6to5
looks like this:and the same line in
build.js
when usingtraceur
:Notice the differences in dep. array.
The text was updated successfully, but these errors were encountered: