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 ```
17 lines
335 B
JavaScript
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']);
|
|
});
|