mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
37 lines
562 B
JavaScript
37 lines
562 B
JavaScript
Package.describe({
|
|
name: 'static-html-tools',
|
|
summary: "Tools for static-html",
|
|
version: '1.0.0',
|
|
git: 'https://github.com/meteor/meteor.git'
|
|
});
|
|
|
|
Npm.depends({
|
|
'lodash.isempty': '4.4.0'
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.use([
|
|
'ecmascript',
|
|
'caching-compiler'
|
|
]);
|
|
|
|
api.export('TemplatingTools');
|
|
|
|
api.mainModule('templating-tools.js');
|
|
});
|
|
|
|
Package.onTest(function(api) {
|
|
api.use([
|
|
'tinytest',
|
|
'ecmascript'
|
|
]);
|
|
|
|
api.use([
|
|
'templating-tools'
|
|
]);
|
|
|
|
api.addFiles([
|
|
'html-scanner-tests.js'
|
|
], 'server');
|
|
});
|