mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
28 lines
602 B
JavaScript
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']);
|
|
});
|