Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 655 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 655 Bytes

rigger-browserify

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.

Using Transforms

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.