mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
27 lines
485 B
JavaScript
27 lines
485 B
JavaScript
![]() |
Package.describe({
|
||
|
name: "telescope:migrations",
|
||
|
summary: "Telescope migrations package",
|
||
|
version: "0.1.0",
|
||
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
||
|
});
|
||
|
|
||
|
Package.onUse(function(api) {
|
||
|
|
||
|
api.versionsFrom("METEOR@1.0");
|
||
|
|
||
|
api.use([
|
||
|
'telescope:lib@0.3.0',
|
||
|
'telescope:users@0.1.0',
|
||
|
'telescope:comments@0.1.0',
|
||
|
'telescope:posts@0.1.2'
|
||
|
]);
|
||
|
|
||
|
api.addFiles([
|
||
|
'lib/server/migrations.js'
|
||
|
], ['server']);
|
||
|
|
||
|
api.export([
|
||
|
'Migrations'
|
||
|
]);
|
||
|
});
|