mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 18:11:40 -05:00
19 lines
361 B
JavaScript
19 lines
361 B
JavaScript
Package.describe({
|
|
name: "nova:api",
|
|
summary: "Telescope API package",
|
|
version: "0.26.0-nova",
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
api.use(['nova:core@0.26.0-nova']);
|
|
|
|
api.addFiles([
|
|
'lib/server/api.js',
|
|
'lib/server/routes.js'
|
|
], ['server']);
|
|
|
|
});
|