$ cnpm install domthingify
Browserify transform for domthing.
npm install domthingify domthing
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' ]
}
};
MIT
Copyright 2014 - 2017 © taobao.org |