2014-09-08 17:29:55 +09:00
|
|
|
Package.describe({
|
|
|
|
summary: "Telescope update prompt package.",
|
|
|
|
version: '0.1.0',
|
|
|
|
name: "telescope-update-prompt"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
2014-09-13 13:52:29 +09:00
|
|
|
api.use(['telescope-lib', 'telescope-base', 'http'], ['client', 'server']);
|
2014-09-08 17:29:55 +09:00
|
|
|
|
|
|
|
api.use([
|
|
|
|
'jquery',
|
|
|
|
'underscore',
|
|
|
|
'iron:router',
|
|
|
|
'templating'
|
|
|
|
], 'client');
|
|
|
|
|
|
|
|
|
|
|
|
api.add_files([
|
|
|
|
'lib/client/update.js',
|
|
|
|
'lib/client/templates/update_banner.html',
|
|
|
|
'lib/client/templates/update_banner.js',
|
|
|
|
'lib/client/templates/update_banner.css'
|
|
|
|
], ['client']);
|
|
|
|
|
2014-09-20 10:55:41 +09:00
|
|
|
api.add_files([
|
|
|
|
'lib/server/phone_home.js'
|
|
|
|
], ['server']);
|
|
|
|
|
2014-09-13 13:52:29 +09:00
|
|
|
api.export([
|
|
|
|
'compareVersions'
|
|
|
|
]);
|
2014-09-08 17:29:55 +09:00
|
|
|
});
|