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".
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".