mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
15 lines
366 B
JavaScript
15 lines
366 B
JavaScript
Package.describe({
|
|
summary: "Easy macros for generating DOM elements in Javascript"
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
// Note: html.js will optionally use jquery if it's available
|
|
api.add_files('html.js', 'client');
|
|
});
|
|
|
|
Package.on_test(function (api) {
|
|
api.use('htmljs', 'client');
|
|
api.use('tinytest');
|
|
api.add_files('htmljs_test.js', 'client');
|
|
});
|