systemjs / builder

SystemJS build tool
MIT License
465 stars 122 forks source link

Question on performance #785

Open dougludlow opened 7 years ago

dougludlow commented 7 years ago

I'm bundling angular2, bootstrap, fontawesome, jquery and a few other minor libraries and it is taking around 60-70 seconds on average. My app maybe has 50 typescript files it compiles with plugin-typescript. Is this a normal/expected time?

This is how I'm using the builder:

var builder = new Builder();
var options = {
    minify: false,
    sourceMaps: false,
    production: true
};
builder.bundle('app/**/*', 'bundle.js', options);