gulp-jspm-build icon indicating copy to clipboard operation
gulp-jspm-build copied to clipboard

Gulp plugin for jspm.

Results 15 gulp-jspm-build issues
Sort by recently updated
recently updated
newest added

Hi, I am getting this error when using gulp-jspm-build --------------------------------------------------------- gulp.task('jspm', function() { jspm({ bundleOptions: { minify: true, mangle: false }, bundles: [ { src: ['target/webapp/main.js'], dst: 'app-bundle.js' } ]...

I've found a problem that jspm uses another path resolution to config file than this plugin. It should be related to issue #6 and pull request #15 ([especially line 31](https://github.com/buddhike/gulp-jspm-build/commit/57e66b8ccc29ae61f597057a0ca260b4e64f294b#diff-26b681bd4dac10f25d5293c7595c435bR31))....

I am trying to override default path and name of JSPM config file (config.js) using "config" parameter as mentioned in documentation however its not working and gulp still searching it...

Chrome DevTools cannot see the original ES6 src files using bundles built by gulp-jspm-build The app-bundle.js generated by gulp-jspm-build has sourceMappingURL mispelled with lowercase "Url" like this, //# sourceMappingUrl=app-bundle.js.map It...

Currently I'm get "System is not defined" when performing a `bundleSfx: true` because the config.js is in the pipeline. Unless I'm mistaken, should this not be the case. Semi-related, it...

bug

Angular2 used to provide SystemJS bundles in their older package (`angular2`), but they stopped doing so after RC. I tried to use `gulp-jspm-build` to create such a package myself, but...

I tried adding adding `inject: true` to my options but it didn't appear to have any effect: `{ src: 'app.js', dst: 'app.bundle.js', options: { inject: true }}` Is this option...

I'm trying to bundle my dependencies and app code separately using arithmetic, for example: `jspm({bundles: [` `{ src: 'app.js - [app/**/*]', dst: 'deps.bundle.js' },` `{ src: 'app.js - deps.bundle.js', dst:...

Hi, I try to bundle an angular2 application. It works from the command line: jspm bundle scripts/app/bootstrap.js with the following config file: ``` System.config({ defaultJSExtensions: true, transpiler: false, paths: {...