Chris Montgomery

Results 10 issues of Chris Montgomery

I'm looking for help with custom themes on the `gulp4` branch. With this new re-write of `gulp-help`, almost everything is customizable through `options`. [See here for all the possible options](https://github.com/chmontgomery/gulp-help/blob/gulp4/index.js#L4)....

help wanted
gulp4

When no files found in a given bundle stream, i.e. no files match the src glob(s) defined, log an error so that the user doesn't accidentally create a mis-configured bundle...

enhancement

By default, if `minSrc` files are specified and no `useMin` option is defined, `minSrc` should be used over `src` file. For example, with no `NODE_ENV` defined, the following `bundle.config.js` will...

bug

e.g. `bundle.result` should accept an object like this: ``` js { dest: './', pathPrefix: [ { env: 'default', val: '/public' }, { env: 'staging', val: 'http://mw3.stg.wsj.net/public' }, { env: ['production',...

enhancement

Currently, you can define the `pathPrefix` for your url paths as an [option to `bundle.results`](docs/API.md#optionspathprefix). This applies to all bundles. Ideally, we should be able to be more granular by...

enhancement

So that bundle results are more flexible, we should bundle based off targets, e.g. "debug", "release", etc instead of environments. This way, an app can include the correct set of...

enhancement

TODO: determine what the recommended size is given browser asset downloading constraints

enhancement

e.g. allow ability to wrap a dep with a require.js `define` statement. The `bundle.config.js` could look something like this: ``` js module.exports = { bundle: { vendor: { scripts: [...

enhancement