gulp-bundle-assets
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
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...
Replacement PR for #72, with passing tests
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...
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...
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...
Is there anyway to configure to delete the older version files, if in case of file version changed
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...
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...
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' }...