Skip to content

jade transform for browserify v2. Sourcemaps generation included.

License

Notifications You must be signed in to change notification settings

tellnes/browserify-jade

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

browserify-jade

jade transform for browserify v2. Sourcemaps generation included.

screen shot 2013-08-28 at 5 02 16 pm

Bitdeli Badge

Configuration

If you are using browserify-jade programatically, you can pass options to the Jade compiler by calling jade() on the browserify-jade transform:

var b = browserify();
b.transform(require('browserify-jade').jade({
    pretty: false
}));

If you are using browserify-jade in a command line build, you can pass parameters by adding a "browserify-jade" section to your package.json. You can either include parameters directly:

"browserify-jade": {
    "pretty": false
}

or for more complicated cases you can reference a .js file:

"browserify-jade": "./assets/browserify-jade-config.js"

And then in browserify-jade-config.js:

module.exports = {
    pretty: (process.env.NODE_ENV == 'production')?true:false
};

About

jade transform for browserify v2. Sourcemaps generation included.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 93.3%
  • HTML 6.7%