mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Conflicts: packages/domutils/package.js packages/handlebars/package.js packages/htmljs/package.js packages/liverange/package.js packages/spark/package.js packages/universal-events/package.js tools/bundler.js tools/help.txt tools/packages.js tools/run-app.js tools/run-mongo.js tools/skel/.meteor/packages
22 lines
439 B
JavaScript
22 lines
439 B
JavaScript
Package.describe({
|
|
name: "htmljs",
|
|
test: "htmljs-test",
|
|
summary: "Small library for expressing HTML trees",
|
|
version: '1.0.0',
|
|
internal: true
|
|
});
|
|
|
|
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('html-tools');
|
|
api.use('tinytest');
|
|
api.use('underscore');
|
|
api.add_files(['htmljs_test.js']);
|
|
});
|