mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Conflicts: packages/html-tools/tokenize.js packages/spacebars-compiler/package.js packages/spacebars-compiler/spacebars-compiler.js packages/spacebars-tests/template_tests.html packages/spacebars-tests/template_tests.js packages/spacebars/package.js packages/spacebars/spacebars-runtime.js packages/ui/domrange.js packages/ui/render_tests.js
30 lines
648 B
JavaScript
30 lines
648 B
JavaScript
|
|
Package.describe({
|
|
summary: "Standards-compliant HTML tools",
|
|
internal: true
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.use('htmljs');
|
|
api.imply('htmljs');
|
|
|
|
api.export('HTMLTools');
|
|
|
|
api.add_files(['utils.js',
|
|
'scanner.js',
|
|
'charref.js',
|
|
'tokenize.js',
|
|
'templatetag.js',
|
|
'parse.js']);
|
|
});
|
|
|
|
Package.on_test(function (api) {
|
|
api.use('tinytest');
|
|
api.use('html-tools');
|
|
api.use('underscore');
|
|
api.use('blaze-tools'); // for `toJS`
|
|
api.add_files(['charref_tests.js',
|
|
'tokenize_tests.js',
|
|
'parse_tests.js']);
|
|
});
|