Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 782 Bytes

README.md

File metadata and controls

40 lines (29 loc) · 782 Bytes

Domthingify

Browserify transform for domthing.

Install

npm install domthingify domthing

Usage

Require your domthing templates directly from your scripts, including the .dom extension:

var MyView = View.extend({
    template: require('./path/to/template.dom')
});

Add domthingify to your browserify transform list.

  • With browserify: browserify app.js -o bundle.js -t domthingify

  • With beefy: beefy app.js -- -t domthingify

  • With moonboots:

    var moonbootsConfig = {
        main: __dirname + '/sample/app.js',
        libraries: [ ... ],
        stylesheets: [ ... ],
        browserify: {
            transforms: [ 'domthingify' ]
        }
    };

License

MIT