2.14.1-1 • Published 7 years ago
ember-templates-loader v2.14.1-1
ember-templates-loader
Load templates into Ember with webpack.
Description
This will precompile your HTMLBars templates when you build with webpack with overrides specific for Ember.
Usage
var MyView = Ember.View.extend({
template: require('ember-templates!./templates/my-view.hbs')
});
Or better within your webpack.config.js
:
module.exports = {
module: {
loaders: [
{ test: /\.hbs$/, loader: 'ember-templates' }
]
},
emberTemplatesLoader: {
// Where to require the compiler from, defaults to an internal compiler.
compiler: 'ember/ember-template-compiler',
// OR: Pass in the precompiler directly...
// precompile: require('ember/ember-template-compiler').precompile,
}
};
Now all required handlebars templates will be compiled for Ember first.
Install
npm install ember-templates-loader --save-dev
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style.
Release History
- 1.12.0 - Marks the start of versioning in sync with Ember - the template compiler is required to match the version of Ember.
- 1.3.1 - Remove napa from install in package.json
- 1.3.0 - Include ember-template-compiler directly instead of using napa.
- 1.2.0 - Wrap template in Ember.HTMLBars.template()
- 1.1.0 - Support for Ember 1.10 and HTMLBars
- 1.0.1 - Include ember-template-compiler in package.json (@mzgoddard)
- 1.0.0 - Update to Handlebars 2.0 and template compiler for Ember 1.9 (@mzgoddard)
- 0.2.0 - Precompile templates for Ember and publish
License
Copyright (c) 2017 Kyle Robinson Young
Licensed under the MIT license.
2.2.2
7 years ago
2.1.2
7 years ago
2.14.1-1
8 years ago
2.14.1
8 years ago
2.0.3
8 years ago
1.13.0
10 years ago
1.12.1
10 years ago
1.12.0
10 years ago
1.3.1
10 years ago
1.3.0
10 years ago
1.2.0
10 years ago
1.1.0
10 years ago
1.0.1
11 years ago
1.0.0
11 years ago
0.2.1
11 years ago
0.2.0
11 years ago
0.1.1
11 years ago
0.1.0
12 years ago