systemjs.dist.js 323 B

1234567891011
  1. var Builder = require("systemjs-builder");
  2. // set it up with your base URL and the path to your config file.
  3. var builder = new Builder("./build", "build/systemjs.config.js");
  4. // run the bundler
  5. builder.bundle("app.js", "dist/app.bundle.js", {
  6. normalize: true,
  7. sourceMaps: true,
  8. sourceMapContents: true
  9. });