Files
meteor/packages/html/package.js
David Greenspan 556870983e more tests and fixes
- moved tojs.js into spacebars

Some failing tests in `spacebars-tests` and `ui`

```
meteor test-packages spacebars htmljs html spacebars-tests ui
```
2013-12-09 23:12:12 -08:00

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']);
});