Files
meteor/packages/htmljs/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

17 lines
335 B
JavaScript

Package.describe({
summary: "Small library for expressing HTML trees"
});
Package.on_use(function (api) {
api.export('HTML');
api.add_files(['utils.js', 'html.js', 'tohtml.js']);
});
Package.on_test(function (api) {
api.use('htmljs');
api.use('tinytest');
api.use('underscore');
api.add_files(['htmljs_test.js']);
});