systemjs.build.js 296 B

1234567
  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("./build/app.js", "./dist/app.js", { uglify: false, minify: true, mangle: true });