/
githubmirror
/
meteor
Обзор
Документация
Войти
/
githubmirror
/
meteor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
devel
packages/static-html/package.js
26 строк
574 B
Nacho Codoñer
Meteor version to 3.4 :comet:
28 янв 2026, 18:36
28 янв 2026, 18:36
fd752c0
Код
Авторство
О чём код?
Package.describe({ name: 'static-html', summary: "Define static page content in .html files", version: '1.5.0', git: 'https://github.com/meteor/meteor.git', devOnly: true, }); 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'); });