The rigger-browsersify
plugin is used to include a piece of code that requires browserification into a non-browserified project:
//=browserify src/test
In thise case, the src/test.js
file would contain code that would be expected in normal browserify process.
If you wish to use browserify transforms in your app, then you can specify these after the source file transform:
//=browserify src/test [brfs]
In the case above, you will also need to include brfs into the devDependencies
of your project.