gulp-bundle-assets icon indicating copy to clipboard operation
gulp-bundle-assets copied to clipboard

Create static asset (js, css) bundles from a config file: a common interface to combining, minifying, revisioning and more

Results 38 gulp-bundle-assets issues
Sort by recently updated
recently updated
newest added

I am trying to config bundle options so I can omit from bundling files in Frontend/_assets/Content folder. I've tried inserting "!FrontEnd/_assets/Content/**/*.{css,less}" in both bundle configs and bundle options, but it...

Hi, I need to deploy my assets to multiple directories, after they've been built by the `bundle.watch( options )` command. Ideally, the one of the directories will have an ENV...

enhancement

Hi, I am creating some 10 bundles, and I need to remove sourcemaps for all bundles. Currently, I am setting options for all bundles separately. Is it possible to have...

Hi, I sometimes get this error when i save a script- or sass-file: Unhandled rejection SyntaxError: Unexpected end of JSON input at JSON.parse (:null:null) at D:\develop\client\src\Web\node_modules\gulp-bundle-assets\lib\results\index.js:110:49 at tryCatcher (D:\develop\client\src\Web\node_modules\bluebird\js\release\util.js:16:23) at...

bug

I'd like the source maps to be disabled based on environment. However, when I do this: `var devLikeEnvs = ['development'];` And then in my bundle options: `maps: devLikeEnvs` It doesn't...

enhancement

I have tried by clean the older files from the build path before bundling. But the file versioning is happening based on comparing the older files. So not sure how...

enhancement

On deleting any file or folder in the watched set, usually the bundle.watch crashes with the following error message: ``` events.js:72 throw er; // Unhandled 'error' event ^ Error: watch...

bug

I'm having some difficulty getting result options to work globally in my gulpfile. I've tried: ``` .pipe(plugins.bundleAssets.results({ dest: './', // destination of bundle.result.json type: { scripts: 'plain', styles: 'plain' }...

enhancement