2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
|
|
|
name: "telescope:tagline-banner",
|
|
|
|
summary: "Show a banner containing your site's tagline on the homepage",
|
2015-06-05 11:39:36 +09:00
|
|
|
version: "0.20.5",
|
2015-04-22 07:50:11 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
|
|
|
|
// --------------------------- 1. Meteor packages dependencies ---------------------------
|
|
|
|
|
2015-06-05 11:39:36 +09:00
|
|
|
api.use(['telescope:core@0.20.5']);
|
2015-04-22 07:50:11 +09:00
|
|
|
|
|
|
|
// ---------------------------------- 2. Files to include ----------------------------------
|
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-04-22 07:50:11 +09:00
|
|
|
'lib/tagline.js',
|
|
|
|
'package-tap.i18n'
|
|
|
|
], ['client', 'server']);
|
|
|
|
|
|
|
|
// client
|
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-04-22 07:50:11 +09:00
|
|
|
'lib/client/templates/tagline_banner.html',
|
|
|
|
'lib/client/templates/tagline_banner.js',
|
|
|
|
'lib/client/stylesheets/tagline_banner.scss'
|
|
|
|
], ['client']);
|
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-05-08 11:53:38 +09:00
|
|
|
"i18n/en.i18n.json",
|
|
|
|
"i18n/fr.i18n.json"
|
2015-04-22 07:50:11 +09:00
|
|
|
], ["client", "server"]);
|
|
|
|
|
|
|
|
});
|