gingerhendrix / broccoli-browserify

Browserify plugin for Broccoli
9 stars 23 forks source link

Add `transform` option to call browserify.transform() #9

Open greghuc opened 10 years ago

greghuc commented 10 years ago

Notes:

Example transform config, using coffeeify and aliasify transforms:

var appJs = browserify('app', {
    entries: [ './app.coffee' ],
    outputFile: 'app.js',
    browserify: {
        extensions: [ '.coffee' ],
    },
    transform: [
      [ 'coffeeify' ],
      [ { global: true }, 'aliasify' ]
    ]
});
cbosco commented 10 years ago

+1

greghuc commented 10 years ago

@gingerhendrix any chance of this PR being merged? @dkastner just submitted an almost identical pull request: https://github.com/gingerhendrix/broccoli-browserify/pull/11 And @cbosco +1ed

Looks like there's interest in this.

gingerhendrix commented 10 years ago

Sorry, i've been a bit a slack - I'll try to have a look at this later today.

valpackett commented 10 years ago

+1

davidosomething commented 10 years ago

+1 - any word?

rosshadden commented 9 years ago

:+1:

sqram commented 9 years ago

2015 year of the transform?