Files
meteor/packages/html/package.js
2013-12-11 20:10:05 -08:00

28 lines
679 B
JavaScript

Package.describe({
summary: "Standards-compliant HTML tools"
});
Package.on_use(function (api) {
// we attach stuff to the global symbol `HTML`, exported
// by `htmljs`, so we both use and effectively imply it.
api.use('htmljs');
api.imply('htmljs');
api.add_files(['scanner.js',
'charref.js',
'tokenize.js',
'parse.js',
'exports.js']);
});
Package.on_test(function (api) {
api.use('tinytest');
api.use('html');
api.use('underscore');
api.use('spacebars'); // for `toJS`
api.add_files(['charref_tests.js',
'tokenize_tests.js',
'parse_tests.js']);
});