openmarco / gulp-systemjs-builder

A tiny wrapper around SystemJS builder .bundle and .buildStatic methods
MIT License
1 stars 7 forks source link

Can't inject new value in config #3

Open unsafePtr opened 7 years ago

unsafePtr commented 7 years ago

For example i have a config and i wanna just to change "map" object inside systemjs config. var Builder = require("systemjs-builder"); var builder = new Builder("", "systemjs.config.js"); builder.config({ map: { app: "app" }});

The injection does not works, On executing bundle i receive error that template didn't found, that is because builder look for old "map".