Files
meteor/packages/htmljs/package.js
David Glasser 996d347139 Merge branch 'devel' into packaging
Conflicts:
	docs/client/api.html
	docs/client/concepts.html
	docs/client/introduction.html
	meteor
	packages/html-tools/package.js
	packages/spacebars-common/package.js
	packages/webapp/webapp_server.js
	tools/bundler.js
2014-07-21 16:18:25 -07:00

21 lines
419 B
JavaScript

Package.describe({
summary: "Small library for expressing HTML trees",
version: '1.0.0'
});
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']);
});