Files
meteor/packages/spacebars/package.js
2014-04-02 09:56:33 -07:00

21 lines
504 B
JavaScript

Package.describe({
summary: "Handlebars-like template language for Meteor",
internal: true
});
// For more, see package `spacebars-compiler`, which is used by
// the build plugin and not shipped to the client unless you
// ask for it by name.
//
// The Spacebars build plugin is in package `templating`.
//
// Additional tests are in `spacebars-tests`.
Package.on_use(function (api) {
api.export('Spacebars');
api.use('htmljs');
api.use('ui');
api.add_files(['spacebars-runtime.js']);
});