Files
meteor/packages/static-html/package.js
2023-05-10 17:54:48 -03:00

26 lines
602 B
JavaScript

Package.describe({
name: 'static-html',
summary: "Define static page content in .html files",
version: '2.0.0-alpha300.4',
git: 'https://github.com/meteor/meteor.git'
});
Package.registerBuildPlugin({
name: "compileStaticHtmlBatch",
use: [
'ecmascript@1.0.0-alpha300.4',
'caching-html-compiler@2.0.0-alpha300.4',
'templating-tools@2.0.0-alpha300.4'
],
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');
});