snakeskinify
Using Snakeskin with Browserify.
Install
npm install snakeskinify --save-dev
Setup
When creating your browserify bundle, just add this line:
bundle;
or if you are a command line cowboy, something along the lines of
browserify -t snakeskinify entryjs -o bundlejs
Configuration
As with most browserify transforms, you can configure snakeskinify via the second argument to bundle.transform
:
bundle;
or inside your package.json
configuration:
Options
adapter
Type: String
Name of the adaptor, for example:
adapterOptions
Type: Object
Options for the used adaptor.
exec
Type: Boolean
Default: false
If the parameter is set to true
the template will be launched after compiling and the results of it work will be saved.
tpl
Type: String
The name of the executable template (if is set exec
), if the parameter is not specified, then uses the rule:
%fileName% || main || index || Object0;
data
Type: ?
Data for the executable template (if is set exec
).
License
The MIT License.