mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
35 lines
832 B
JavaScript
35 lines
832 B
JavaScript
Package.describe({
|
|
name: "telescope:tagline-banner",
|
|
summary: "Show a banner containing your site's tagline on the homepage",
|
|
version: "0.2.0",
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
// --------------------------- 1. Meteor packages dependencies ---------------------------
|
|
|
|
api.use(['telescope:core@0.1.0']);
|
|
|
|
// ---------------------------------- 2. Files to include ----------------------------------
|
|
|
|
api.addFiles([
|
|
'lib/tagline.js',
|
|
'package-tap.i18n'
|
|
], ['client', 'server']);
|
|
|
|
// client
|
|
|
|
api.addFiles([
|
|
'lib/client/templates/tagline_banner.html',
|
|
'lib/client/templates/tagline_banner.js',
|
|
'lib/client/stylesheets/tagline_banner.scss'
|
|
], ['client']);
|
|
|
|
api.addFiles([
|
|
"i18n/en.i18n.json",
|
|
"i18n/fr.i18n.json"
|
|
], ["client", "server"]);
|
|
|
|
});
|