mirror of
https://github.com/vale981/Vulcan
synced 2025-03-05 09:31:43 -05:00
v0.27.0
This commit is contained in:
parent
d64c0f689f
commit
2b34713c0b
33 changed files with 132 additions and 132 deletions
|
@ -70,32 +70,32 @@ modules-runtime@0.7.6
|
|||
mongo@1.1.12
|
||||
mongo-id@1.0.5
|
||||
mongo-livedata@1.0.12
|
||||
nova:api@0.26.5-nova
|
||||
nova:base-components@0.26.5-nova
|
||||
nova:base-routes@0.26.5-nova
|
||||
nova:base-styles@0.26.5-nova
|
||||
nova:categories@0.26.5-nova
|
||||
nova:comments@0.26.5-nova
|
||||
nova:core@0.26.5-nova
|
||||
nova:debug@0.26.5-nova
|
||||
nova:email@0.26.5-nova
|
||||
nova:email-templates@0.26.5-nova
|
||||
nova:embedly@0.26.5-nova
|
||||
nova:events@0.26.5-nova
|
||||
nova:forms@0.26.5-nova
|
||||
nova:getting-started@0.26.5-nova
|
||||
nova:i18n-en-us@0.26.5-nova
|
||||
nova:kadira@0.26.5-nova
|
||||
nova:lib@0.26.5-nova
|
||||
nova:newsletter@0.26.5-nova
|
||||
nova:notifications@0.26.5-nova
|
||||
nova:posts@0.26.5-nova
|
||||
nova:rss@0.26.5-nova
|
||||
nova:search@0.26.5-nova
|
||||
nova:settings@0.26.5-nova
|
||||
nova:subscribe@0.26.5-nova
|
||||
nova:users@0.26.5-nova
|
||||
nova:voting@0.26.5-nova
|
||||
nova:api@0.27.0-nova
|
||||
nova:base-components@0.27.0-nova
|
||||
nova:base-routes@0.27.0-nova
|
||||
nova:base-styles@0.27.0-nova
|
||||
nova:categories@0.27.0-nova
|
||||
nova:comments@0.27.0-nova
|
||||
nova:core@0.27.0-nova
|
||||
nova:debug@0.27.0-nova
|
||||
nova:email@0.27.0-nova
|
||||
nova:email-templates@0.27.0-nova
|
||||
nova:embedly@0.27.0-nova
|
||||
nova:events@0.27.0-nova
|
||||
nova:forms@0.27.0-nova
|
||||
nova:getting-started@0.27.0-nova
|
||||
nova:i18n-en-us@0.27.0-nova
|
||||
nova:kadira@0.27.0-nova
|
||||
nova:lib@0.27.0-nova
|
||||
nova:newsletter@0.27.0-nova
|
||||
nova:notifications@0.27.0-nova
|
||||
nova:posts@0.27.0-nova
|
||||
nova:rss@0.27.0-nova
|
||||
nova:search@0.27.0-nova
|
||||
nova:settings@0.27.0-nova
|
||||
nova:subscribe@0.27.0-nova
|
||||
nova:users@0.27.0-nova
|
||||
nova:voting@0.27.0-nova
|
||||
npm-bcrypt@0.9.1
|
||||
npm-mongo@1.5.48
|
||||
observe-sequence@1.0.12
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "invites",
|
||||
summary: "Telescope invites package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope-invites.git"
|
||||
});
|
||||
|
||||
|
@ -17,7 +17,7 @@ Package.onUse(function (api) {
|
|||
|
||||
// automatic (let the package specify where it's needed)
|
||||
|
||||
api.use(['nova:core@0.26.5-nova']);
|
||||
api.use(['nova:core@0.27.0-nova']);
|
||||
|
||||
// client
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "migrations",
|
||||
summary: "Telescope migrations package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/Telescope.git"
|
||||
});
|
||||
|
||||
|
@ -9,7 +9,7 @@ Package.onUse(function(api) {
|
|||
|
||||
api.versionsFrom("METEOR@1.0");
|
||||
|
||||
api.use(['nova:core@0.26.5-nova']);
|
||||
api.use(['nova:core@0.27.0-nova']);
|
||||
|
||||
api.addFiles([
|
||||
'lib/server/migrations.js'
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:api",
|
||||
summary: "Telescope API package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/Telescope.git"
|
||||
});
|
||||
|
||||
|
@ -9,7 +9,7 @@ Package.onUse(function (api) {
|
|||
|
||||
api.versionsFrom(['METEOR@1.0']);
|
||||
|
||||
api.use(['nova:core@0.26.5-nova']);
|
||||
api.use(['nova:core@0.27.0-nova']);
|
||||
|
||||
api.mainModule("lib/server.js", "server");
|
||||
// api.mainModule("lib/client.js", "client");
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:base-components",
|
||||
summary: "Telescope components package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope.git"
|
||||
});
|
||||
|
||||
|
@ -11,10 +11,10 @@ Package.onUse(function (api) {
|
|||
|
||||
api.use([
|
||||
// Nova packages
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:posts@0.26.5-nova',
|
||||
'nova:users@0.26.5-nova',
|
||||
'nova:comments@0.26.5-nova',
|
||||
'nova:core@0.27.0-nova',
|
||||
'nova:posts@0.27.0-nova',
|
||||
'nova:users@0.27.0-nova',
|
||||
'nova:comments@0.27.0-nova',
|
||||
|
||||
// third-party packages
|
||||
'fortawesome:fontawesome@4.5.0',
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:base-routes",
|
||||
summary: "Nova routes package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope.git"
|
||||
});
|
||||
|
||||
|
@ -13,10 +13,10 @@ Package.onUse(function (api) {
|
|||
|
||||
// Nova packages
|
||||
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:posts@0.26.5-nova',
|
||||
'nova:users@0.26.5-nova',
|
||||
'nova:comments@0.26.5-nova',
|
||||
'nova:core@0.27.0-nova',
|
||||
'nova:posts@0.27.0-nova',
|
||||
'nova:users@0.27.0-nova',
|
||||
'nova:comments@0.27.0-nova',
|
||||
|
||||
// third-party packages
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:base-styles",
|
||||
summary: "Nova basic styles package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/Telescope.git"
|
||||
});
|
||||
|
||||
|
@ -10,7 +10,7 @@ Package.onUse(function (api) {
|
|||
api.versionsFrom(['METEOR@1.0']);
|
||||
|
||||
api.use([
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:core@0.27.0-nova',
|
||||
'fourseven:scss@3.9.0',
|
||||
// 'juliancwirko:postcss@1.0.0-rc.4',
|
||||
// 'seba:minifiers-autoprefixer@0.0.1',
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:categories",
|
||||
summary: "Telescope tags package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope-tags.git"
|
||||
});
|
||||
|
||||
|
@ -10,9 +10,9 @@ Package.onUse(function (api) {
|
|||
api.versionsFrom("METEOR@1.0");
|
||||
|
||||
api.use([
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:posts@0.26.5-nova',
|
||||
'nova:users@0.26.5-nova'
|
||||
'nova:core@0.27.0-nova',
|
||||
'nova:posts@0.27.0-nova',
|
||||
'nova:users@0.27.0-nova'
|
||||
]);
|
||||
|
||||
api.mainModule("lib/server.js", "server");
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: 'nova:cloudinary',
|
||||
summary: 'Telescope file upload package.',
|
||||
version: '0.26.5-nova',
|
||||
version: '0.27.0-nova',
|
||||
git: "https://github.com/TelescopeJS/Telescope.git"
|
||||
});
|
||||
|
||||
|
@ -10,8 +10,8 @@ Package.onUse(function (api) {
|
|||
api.versionsFrom(['METEOR@1.0']);
|
||||
|
||||
api.use([
|
||||
'nova:posts@0.26.5-nova',
|
||||
'nova:core@0.26.5-nova'
|
||||
'nova:posts@0.27.0-nova',
|
||||
'nova:core@0.27.0-nova'
|
||||
]);
|
||||
|
||||
api.use([
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:comments",
|
||||
summary: "Telescope comments package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/Telescope.git"
|
||||
});
|
||||
|
||||
|
@ -10,15 +10,15 @@ Package.onUse(function (api) {
|
|||
api.versionsFrom(['METEOR@1.0']);
|
||||
|
||||
api.use([
|
||||
'nova:lib@0.26.5-nova',
|
||||
'nova:settings@0.26.5-nova',
|
||||
'nova:posts@0.26.5-nova',
|
||||
'nova:users@0.26.5-nova'
|
||||
'nova:lib@0.27.0-nova',
|
||||
'nova:settings@0.27.0-nova',
|
||||
'nova:posts@0.27.0-nova',
|
||||
'nova:users@0.27.0-nova'
|
||||
]);
|
||||
|
||||
api.use([
|
||||
'nova:notifications@0.26.5-nova',
|
||||
'nova:email@0.26.5-nova'
|
||||
'nova:notifications@0.27.0-nova',
|
||||
'nova:email@0.27.0-nova'
|
||||
], ['client', 'server'], {weak: true});
|
||||
|
||||
api.mainModule("lib/server.js", "server");
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:core",
|
||||
summary: "Telescope core package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/Telescope.git"
|
||||
});
|
||||
|
||||
|
@ -10,12 +10,12 @@ Package.onUse(function(api) {
|
|||
api.versionsFrom("METEOR@1.0");
|
||||
|
||||
api.use([
|
||||
'nova:lib@0.26.5-nova',
|
||||
'nova:events@0.26.5-nova'
|
||||
'nova:lib@0.27.0-nova',
|
||||
'nova:events@0.27.0-nova'
|
||||
]);
|
||||
|
||||
api.imply([
|
||||
'nova:lib@0.26.5-nova'
|
||||
'nova:lib@0.27.0-nova'
|
||||
]);
|
||||
|
||||
api.mainModule("lib/server.js", "server");
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:debug",
|
||||
summary: "Telescope debug package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope.git"
|
||||
});
|
||||
|
||||
|
@ -15,11 +15,11 @@ Package.onUse(function (api) {
|
|||
|
||||
// Nova packages
|
||||
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:posts@0.26.5-nova',
|
||||
'nova:users@0.26.5-nova',
|
||||
'nova:email@0.26.5-nova',
|
||||
'nova:comments@0.26.5-nova'
|
||||
'nova:core@0.27.0-nova',
|
||||
'nova:posts@0.27.0-nova',
|
||||
'nova:users@0.27.0-nova',
|
||||
'nova:email@0.27.0-nova',
|
||||
'nova:comments@0.27.0-nova'
|
||||
|
||||
]);
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:demo",
|
||||
summary: "Telescope components package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope.git"
|
||||
});
|
||||
|
||||
|
@ -13,7 +13,7 @@ Package.onUse(function (api) {
|
|||
|
||||
// Nova packages
|
||||
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:core@0.27.0-nova',
|
||||
'utilities:react-list-container@0.1.10',
|
||||
'utilities:smart-publications@0.1.4',
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:email-templates",
|
||||
summary: "Telescope email templates package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope.git"
|
||||
});
|
||||
|
||||
|
@ -10,11 +10,11 @@ Package.onUse(function (api) {
|
|||
api.versionsFrom(['METEOR@1.0']);
|
||||
|
||||
api.use([
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:posts@0.26.5-nova',
|
||||
'nova:users@0.26.5-nova',
|
||||
'nova:comments@0.26.5-nova',
|
||||
'nova:email@0.26.5-nova'
|
||||
'nova:core@0.27.0-nova',
|
||||
'nova:posts@0.27.0-nova',
|
||||
'nova:users@0.27.0-nova',
|
||||
'nova:comments@0.27.0-nova',
|
||||
'nova:email@0.27.0-nova'
|
||||
]);
|
||||
|
||||
api.addFiles([
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:email",
|
||||
summary: "Telescope email package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope-email.git"
|
||||
});
|
||||
|
||||
|
@ -10,7 +10,7 @@ Package.onUse(function (api) {
|
|||
api.versionsFrom(['METEOR@1.0']);
|
||||
|
||||
api.use([
|
||||
'nova:core@0.26.5-nova'
|
||||
'nova:core@0.27.0-nova'
|
||||
]);
|
||||
|
||||
api.mainModule("lib/server.js", "server");
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:embedly",
|
||||
summary: "Telescope Embedly module package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: 'https://github.com/TelescopeJS/telescope-embedly.git'
|
||||
});
|
||||
|
||||
|
@ -10,9 +10,9 @@ Package.onUse( function(api) {
|
|||
api.versionsFrom("METEOR@1.0");
|
||||
|
||||
api.use([
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:posts@0.26.5-nova',
|
||||
'nova:users@0.26.5-nova',
|
||||
'nova:core@0.27.0-nova',
|
||||
'nova:posts@0.27.0-nova',
|
||||
'nova:users@0.27.0-nova',
|
||||
'fourseven:scss@3.8.0_1'
|
||||
]);
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:events",
|
||||
summary: "Telescope event tracking package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/Telescope.git"
|
||||
});
|
||||
|
||||
|
@ -10,7 +10,7 @@ Package.onUse(function(api) {
|
|||
api.versionsFrom("METEOR@1.0");
|
||||
|
||||
api.use([
|
||||
'nova:lib@0.26.5-nova'
|
||||
'nova:lib@0.27.0-nova'
|
||||
]);
|
||||
|
||||
api.mainModule("lib/server.js", "server");
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:forms-tags",
|
||||
summary: "Telescope tag input package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: 'https://github.com/TelescopeJS/telescope.git'
|
||||
});
|
||||
|
||||
|
@ -10,8 +10,8 @@ Package.onUse( function(api) {
|
|||
api.versionsFrom("METEOR@1.0");
|
||||
|
||||
api.use([
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:forms@0.26.5-nova'
|
||||
'nova:core@0.27.0-nova',
|
||||
'nova:forms@0.27.0-nova'
|
||||
]);
|
||||
|
||||
api.mainModule("lib/export.js", ["client", "server"]);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:forms",
|
||||
summary: "Form containers for React",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/meteor-utilities/react-form-containers.git"
|
||||
});
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:getting-started",
|
||||
summary: "Getting started posts",
|
||||
version: '0.26.5-nova',
|
||||
version: '0.27.0-nova',
|
||||
git: "https://github.com/TelescopeJS/telescope-getting-started.git"
|
||||
});
|
||||
|
||||
|
@ -14,10 +14,10 @@ Package.onUse(function (api) {
|
|||
api.versionsFrom(['METEOR@1.0']);
|
||||
|
||||
api.use([
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:posts@0.26.5-nova',
|
||||
'nova:comments@0.26.5-nova',
|
||||
'nova:users@0.26.5-nova'
|
||||
'nova:core@0.27.0-nova',
|
||||
'nova:posts@0.27.0-nova',
|
||||
'nova:comments@0.27.0-nova',
|
||||
'nova:users@0.27.0-nova'
|
||||
]);
|
||||
|
||||
// both
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:i18n-en-us",
|
||||
summary: "Telescope i18n package (en_US)",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope.git"
|
||||
});
|
||||
|
||||
|
@ -10,7 +10,7 @@ Package.onUse(function (api) {
|
|||
api.versionsFrom("METEOR@1.0");
|
||||
|
||||
api.use([
|
||||
'nova:core@0.26.5-nova'
|
||||
'nova:core@0.27.0-nova'
|
||||
]);
|
||||
|
||||
api.addFiles([
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:kadira",
|
||||
summary: "Telescope Kadira package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope.git"
|
||||
});
|
||||
|
||||
|
@ -10,7 +10,7 @@ Package.onUse(function (api) {
|
|||
api.versionsFrom(['METEOR@1.0']);
|
||||
|
||||
api.use([
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:core@0.27.0-nova',
|
||||
'meteorhacks:kadira@2.30.0',
|
||||
'kadira:debug@3.2.2',
|
||||
'meteorhacks:kadira-profiler@1.2.1'
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
Telescope = {};
|
||||
|
||||
Telescope.VERSION = '0.26.5-nova';
|
||||
Telescope.VERSION = '0.27.0-nova';
|
||||
|
||||
// ------------------------------------- Config -------------------------------- //
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: 'nova:lib',
|
||||
summary: 'Telescope libraries.',
|
||||
version: '0.26.5-nova',
|
||||
version: '0.27.0-nova',
|
||||
git: "https://github.com/TelescopeJS/Telescope.git"
|
||||
});
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:newsletter",
|
||||
summary: "Telescope email newsletter package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope-newsletter.git"
|
||||
});
|
||||
|
||||
|
@ -10,12 +10,12 @@ Package.onUse(function (api) {
|
|||
api.versionsFrom("METEOR@1.0");
|
||||
|
||||
api.use([
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:posts@0.26.5-nova',
|
||||
'nova:comments@0.26.5-nova',
|
||||
'nova:users@0.26.5-nova',
|
||||
'nova:categories@0.26.5-nova',
|
||||
'nova:email@0.26.5-nova'
|
||||
'nova:core@0.27.0-nova',
|
||||
'nova:posts@0.27.0-nova',
|
||||
'nova:comments@0.27.0-nova',
|
||||
'nova:users@0.27.0-nova',
|
||||
'nova:categories@0.27.0-nova',
|
||||
'nova:email@0.27.0-nova'
|
||||
]);
|
||||
|
||||
api.mainModule('lib/server.js', 'server');
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:notifications",
|
||||
summary: "Telescope notifications package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope-notifications.git"
|
||||
});
|
||||
|
||||
|
@ -10,9 +10,9 @@ Package.onUse(function (api) {
|
|||
api.versionsFrom("METEOR@1.0");
|
||||
|
||||
api.use([
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:email@0.26.5-nova',
|
||||
'nova:users@0.26.5-nova'
|
||||
'nova:core@0.27.0-nova',
|
||||
'nova:email@0.27.0-nova',
|
||||
'nova:users@0.27.0-nova'
|
||||
]);
|
||||
|
||||
api.addFiles([
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:posts",
|
||||
summary: "Telescope posts package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope-posts.git"
|
||||
});
|
||||
|
||||
|
@ -10,14 +10,14 @@ Package.onUse(function (api) {
|
|||
api.versionsFrom(['METEOR@1.0']);
|
||||
|
||||
api.use([
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:users@0.26.5-nova',
|
||||
'nova:core@0.27.0-nova',
|
||||
'nova:users@0.27.0-nova',
|
||||
'utilities:react-list-container@0.1.10'
|
||||
]);
|
||||
|
||||
api.use([
|
||||
'nova:notifications@0.26.5-nova',
|
||||
'nova:email@0.26.5-nova'
|
||||
'nova:notifications@0.27.0-nova',
|
||||
'nova:email@0.27.0-nova'
|
||||
], ['client', 'server'], {weak: true});
|
||||
|
||||
api.mainModule("lib/server.js", "server");
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:rss",
|
||||
summary: "Telescope RSS package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope-rss.git"
|
||||
});
|
||||
|
||||
|
@ -9,7 +9,7 @@ Npm.depends({rss: "1.1.1"});
|
|||
|
||||
Package.onUse(function (api) {
|
||||
|
||||
api.use(['nova:core@0.26.5-nova']);
|
||||
api.use(['nova:core@0.27.0-nova']);
|
||||
|
||||
api.addFiles(['lib/headtags.js'], ['client', 'server']);
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:search",
|
||||
summary: "Telescope search package",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope-pages.git"
|
||||
});
|
||||
|
||||
|
@ -9,7 +9,7 @@ Package.onUse(function (api) {
|
|||
|
||||
api.versionsFrom("METEOR@1.0");
|
||||
|
||||
api.use(['nova:core@0.26.5-nova']);
|
||||
api.use(['nova:core@0.27.0-nova']);
|
||||
|
||||
api.addFiles([
|
||||
'lib/parameters.js',
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:settings",
|
||||
summary: "Telescope settings package – only necessary if you're storing settings in a collection",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/Telescope.git"
|
||||
});
|
||||
|
||||
|
@ -10,8 +10,8 @@ Package.onUse(function(api) {
|
|||
api.versionsFrom(['METEOR@1.0']);
|
||||
|
||||
api.use([
|
||||
'nova:lib@0.26.5-nova',
|
||||
'nova:users@0.26.5-nova'
|
||||
'nova:lib@0.27.0-nova',
|
||||
'nova:users@0.27.0-nova'
|
||||
]);
|
||||
|
||||
api.addFiles([
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:subscribe",
|
||||
summary: "Subscribe to posts, users, etc. to be notified of new activity",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/telescope-subscribe-to-posts.git"
|
||||
});
|
||||
|
||||
|
@ -11,8 +11,8 @@ Package.onUse(function (api) {
|
|||
api.versionsFrom("METEOR@1.0");
|
||||
|
||||
api.use([
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:users@0.26.5-nova', // this dep is needed to check users permissions
|
||||
'nova:core@0.27.0-nova',
|
||||
'nova:users@0.27.0-nova', // this dep is needed to check users permissions
|
||||
// dependencies on posts, categories are done with nested imports to reduce explicit dependencies
|
||||
]);
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: 'nova:users',
|
||||
summary: 'Telescope permissions.',
|
||||
version: '0.26.5-nova',
|
||||
version: '0.27.0-nova',
|
||||
git: "https://github.com/TelescopeJS/Telescope.git"
|
||||
});
|
||||
|
||||
|
@ -10,8 +10,8 @@ Package.onUse(function (api) {
|
|||
api.versionsFrom(['METEOR@1.0']);
|
||||
|
||||
api.use([
|
||||
'nova:core@0.26.5-nova',
|
||||
'nova:email@0.26.5-nova'
|
||||
'nova:core@0.27.0-nova',
|
||||
'nova:email@0.27.0-nova'
|
||||
]);
|
||||
|
||||
api.mainModule("lib/server.js", "server");
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Package.describe({
|
||||
name: "nova:voting",
|
||||
summary: "Telescope scoring package.",
|
||||
version: "0.26.5-nova",
|
||||
version: "0.27.0-nova",
|
||||
git: "https://github.com/TelescopeJS/Telescope.git"
|
||||
});
|
||||
|
||||
|
@ -9,11 +9,11 @@ Package.onUse(function (api) {
|
|||
|
||||
api.versionsFrom("METEOR@1.0");
|
||||
|
||||
api.use(['nova:core@0.26.5-nova']);
|
||||
api.use(['nova:core@0.27.0-nova']);
|
||||
|
||||
api.use([
|
||||
'nova:posts@0.26.5-nova',
|
||||
'nova:comments@0.26.5-nova'
|
||||
'nova:posts@0.27.0-nova',
|
||||
'nova:comments@0.27.0-nova'
|
||||
], ['client', 'server']);
|
||||
|
||||
api.addFiles([
|
||||
|
|
Loading…
Add table
Reference in a new issue