Files
meteor/packages/htmljs/package.js
David Greenspan 55814cab4c htmljs work
2014-04-28 09:29:31 -07:00

21 lines
417 B
JavaScript

Package.describe({
summary: "Small library for expressing HTML trees",
internal: true
});
Package.on_use(function (api) {
api.export('HTML');
api.add_files(['preamble.js',
'visitors.js',
'html.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']);
});