mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
- moved tojs.js into spacebars Some failing tests in `spacebars-tests` and `ui` ``` meteor test-packages spacebars htmljs html spacebars-tests ui ```
26 lines
556 B
JavaScript
26 lines
556 B
JavaScript
|
|
Package.describe({
|
|
summary: "Standards-compliant HTML tools"
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
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('ui'); // for `toCode`
|
|
api.add_files(['charref_tests.js',
|
|
'tokenize_tests.js',
|
|
'parse_tests.js']);
|
|
});
|