mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
33 lines
No EOL
650 B
JavaScript
33 lines
No EOL
650 B
JavaScript
Package.describe({
|
|
summary: "Telescope update prompt package.",
|
|
version: '0.1.0',
|
|
name: "telescope-update-prompt"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.use(['telescope-lib', 'telescope-base', 'http'], ['client', 'server']);
|
|
|
|
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']);
|
|
|
|
api.add_files([
|
|
'lib/server/phone_home.js'
|
|
], ['server']);
|
|
|
|
api.export([
|
|
'compareVersions'
|
|
]);
|
|
}); |