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

19 lines
378 B
JavaScript

Package.describe({
summary: "Small library for expressing HTML trees",
internal: true
});
Package.on_use(function (api) {
api.export('HTML');
api.add_files(['utils.js', 'html.js', 'tohtml.js']);
});
Package.on_test(function (api) {
api.use('htmljs');
api.use('html-tools');
api.use('tinytest');
api.use('underscore');
api.add_files(['htmljs_test.js']);
});