mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
26 lines
556 B
JavaScript
26 lines
556 B
JavaScript
Package.describe({
|
|
name: 'static-html',
|
|
summary: "Define static page content in .html files",
|
|
version: '1.4.0',
|
|
git: 'https://github.com/meteor/meteor.git'
|
|
});
|
|
|
|
Package.registerBuildPlugin({
|
|
name: "compileStaticHtmlBatch",
|
|
use: [
|
|
'ecmascript@0.16.9',
|
|
'static-html-tools@1.0.0',
|
|
'caching-compiler@2.0.0',
|
|
],
|
|
sources: [
|
|
'static-html.js'
|
|
]
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.use('isobuild:compiler-plugin@1.0.0');
|
|
|
|
// Body attributes are compiled to code that uses Meteor.startup
|
|
api.imply('meteor', 'client');
|
|
});
|