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

28 lines
602 B
JavaScript

Package.describe({
summary: "Standards-compliant HTML tools",
internal: true
});
Package.on_use(function (api) {
api.use('htmljs');
api.export('HTMLTools');
api.add_files(['utils.js',
'scanner.js',
'charref.js',
'tokenize.js',
'parse.js']);
});
Package.on_test(function (api) {
api.use('tinytest');
api.use('html-tools');
api.use('underscore');
api.use('spacebars-compiler'); // for `HTML.toJS`
api.add_files(['charref_tests.js',
'tokenize_tests.js',
'parse_tests.js']);
});