Skip to content

Instantly share code, notes, and snippets.

@Dremora
Created December 10, 2014 19:36
Show Gist options
  • Save Dremora/3c4b0bcd3126803780c1 to your computer and use it in GitHub Desktop.
Save Dremora/3c4b0bcd3126803780c1 to your computer and use it in GitHub Desktop.
define(function (require) {
require('hbs!./template');
});
{
"name": "require-handlebars-plugin-bug",
"dependencies": {
"requirejs": "2.1.15",
"require-handlebars-plugin": "0.11.1"
}
}
({
paths: {
hbs: 'bower_components/require-handlebars-plugin/hbs'
},
dir: 'build',
removeCombined: true,
modules: [
{
name: 'foo',
exclude: [ 'bar' ]
},
{
name: 'bar'
}
]
})
define(function (require) {
require('bar');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment