version bump (0.26.1)

This commit is contained in:
Sacha Greif 2016-04-19 14:52:22 +09:00
parent ffef4885f5
commit aaa280e8e8
34 changed files with 128 additions and 128 deletions

View file

@ -82,31 +82,31 @@ momentjs:moment@2.12.0
mongo@1.1.7 mongo@1.1.7
mongo-id@1.0.4 mongo-id@1.0.4
mongo-livedata@1.0.12 mongo-livedata@1.0.12
nova:api@0.26.0-nova nova:api@0.26.1-nova
nova:base-components@0.26.0-nova nova:base-components@0.26.1-nova
nova:base-styles@0.26.0-nova nova:base-styles@0.26.1-nova
nova:categories@0.26.1-nova nova:categories@0.26.1-nova
nova:comments@0.26.0-nova nova:comments@0.26.1-nova
nova:core@0.26.0-nova nova:core@0.26.1-nova
nova:debug@0.26.0-nova nova:debug@0.26.1-nova
nova:email@0.26.0-nova nova:email@0.26.1-nova
nova:email-templates@0.26.0-nova nova:email-templates@0.26.1-nova
nova:embedly@0.26.0-nova nova:embedly@0.26.1-nova
nova:events@0.26.0-nova nova:events@0.26.1-nova
nova:forms@0.26.0-nova nova:forms@0.26.1-nova
nova:getting-started@0.26.1-nova nova:getting-started@0.26.1-nova
nova:i18n@0.26.0-nova nova:i18n@0.26.1-nova
nova:kadira@0.26.0-nova nova:kadira@0.26.1-nova
nova:lib@0.26.0-nova nova:lib@0.26.1-nova
nova:newsletter@0.26.0-nova nova:newsletter@0.26.1-nova
nova:notifications@0.26.0-nova nova:notifications@0.26.1-nova
nova:posts@0.26.0-nova nova:posts@0.26.1-nova
nova:rss@0.26.0-nova nova:rss@0.26.1-nova
nova:search@0.26.0-nova nova:search@0.26.1-nova
nova:settings@0.26.0-nova nova:settings@0.26.1-nova
nova:share@0.26.0-nova nova:share@0.26.1-nova
nova:users@0.26.0-nova nova:users@0.26.1-nova
nova:voting@0.26.0-nova nova:voting@0.26.1-nova
npm-bcrypt@0.8.5 npm-bcrypt@0.8.5
npm-mongo@1.4.43 npm-mongo@1.4.43
oauth@1.1.10 oauth@1.1.10

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: 'cloudinary', name: 'cloudinary',
summary: 'Telescope file upload package.', summary: 'Telescope file upload package.',
version: '0.26.0-nova', version: '0.26.1-nova',
git: "https://github.com/TelescopeJS/Telescope.git" git: "https://github.com/TelescopeJS/Telescope.git"
}); });
@ -14,7 +14,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']); api.versionsFrom(['METEOR@1.0']);
api.use([ api.use([
'nova:core@0.26.0-nova', 'nova:core@0.26.1-nova',
// 'lepozepo:cloudinary@4.1.1' // 'lepozepo:cloudinary@4.1.1'
// 'lepozepo:s3@5.1.5' // 'lepozepo:s3@5.1.5'
]); ]);

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "invites", name: "invites",
summary: "Telescope invites package", summary: "Telescope invites package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope-invites.git" 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) // automatic (let the package specify where it's needed)
api.use(['nova:core@0.26.0-nova']); api.use(['nova:core@0.26.1-nova']);
// client // client

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "migrations", name: "migrations",
summary: "Telescope migrations package", summary: "Telescope migrations package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/Telescope.git" git: "https://github.com/TelescopeJS/Telescope.git"
}); });
@ -9,7 +9,7 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0"); api.versionsFrom("METEOR@1.0");
api.use(['nova:core@0.26.0-nova']); api.use(['nova:core@0.26.1-nova']);
api.addFiles([ api.addFiles([
'lib/server/migrations.js' 'lib/server/migrations.js'

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "post-by-feed", name: "post-by-feed",
summary: "Auto post via RSS to Telescope", summary: "Auto post via RSS to Telescope",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope-post-by-feed.git" git: "https://github.com/TelescopeJS/telescope-post-by-feed.git"
}); });
@ -16,7 +16,7 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0"); api.versionsFrom("METEOR@1.0");
api.use(['nova:core@0.26.0-nova']); api.use(['nova:core@0.26.1-nova']);
api.addFiles([ api.addFiles([
'lib/feeds.js', 'lib/feeds.js',

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "subscribe-to-posts", name: "subscribe-to-posts",
summary: "Subscribe to posts to be notified when they get new comments", summary: "Subscribe to posts to be notified when they get new comments",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope-subscribe-to-posts.git" git: "https://github.com/TelescopeJS/telescope-subscribe-to-posts.git"
}); });
@ -14,7 +14,7 @@ Package.onUse(function (api) {
// automatic (let the package specify where it's needed) // automatic (let the package specify where it's needed)
api.use(['nova:core@0.26.0-nova']); api.use(['nova:core@0.26.1-nova']);
// ---------------------------------- 2. Files to include ---------------------------------- // ---------------------------------- 2. Files to include ----------------------------------

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "theme-test", name: "theme-test",
summary: "Telescope components package", summary: "Telescope components package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope.git" git: "https://github.com/TelescopeJS/telescope.git"
}); });
@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']); api.versionsFrom(['METEOR@1.0']);
api.use([ api.use([
'nova:lib@0.26.0-nova' 'nova:lib@0.26.1-nova'
]); ]);
api.addFiles([ api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:api", name: "nova:api",
summary: "Telescope API package", summary: "Telescope API package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/Telescope.git" git: "https://github.com/TelescopeJS/Telescope.git"
}); });
@ -9,7 +9,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']); api.versionsFrom(['METEOR@1.0']);
api.use(['nova:core@0.26.0-nova']); api.use(['nova:core@0.26.1-nova']);
api.addFiles([ api.addFiles([
'lib/server/api.js', 'lib/server/api.js',

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:base-components", name: "nova:base-components",
summary: "Telescope components package", summary: "Telescope components package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope.git" git: "https://github.com/TelescopeJS/telescope.git"
}); });
@ -13,11 +13,11 @@ Package.onUse(function (api) {
// Nova packages // Nova packages
'nova:core@0.26.0-nova', 'nova:core@0.26.1-nova',
'nova:posts@0.26.0-nova', 'nova:posts@0.26.1-nova',
'nova:users@0.26.0-nova', 'nova:users@0.26.1-nova',
'nova:comments@0.26.0-nova', 'nova:comments@0.26.1-nova',
'nova:share@0.26.0-nova', 'nova:share@0.26.1-nova',
// third-party packages // third-party packages

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:base-styles", name: "nova:base-styles",
summary: "Nova basic styles package", summary: "Nova basic styles package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/Telescope.git" git: "https://github.com/TelescopeJS/Telescope.git"
}); });
@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']); api.versionsFrom(['METEOR@1.0']);
api.use([ api.use([
'nova:core@0.26.0-nova', 'nova:core@0.26.1-nova',
'fourseven:scss@3.4.1', 'fourseven:scss@3.4.1',
// 'juliancwirko:postcss@1.0.0-rc.4', // 'juliancwirko:postcss@1.0.0-rc.4',
// 'seba:minifiers-autoprefixer@0.0.1', // 'seba:minifiers-autoprefixer@0.0.1',

View file

@ -10,9 +10,9 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0"); api.versionsFrom("METEOR@1.0");
api.use([ api.use([
'nova:core@0.26.0-nova', 'nova:core@0.26.1-nova',
'nova:posts@0.26.0-nova', 'nova:posts@0.26.1-nova',
'nova:users@0.26.0-nova' 'nova:users@0.26.1-nova'
]); ]);
api.addFiles([ api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:comments", name: "nova:comments",
summary: "Telescope comments package", summary: "Telescope comments package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/Telescope.git" git: "https://github.com/TelescopeJS/Telescope.git"
}); });
@ -10,16 +10,16 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']); api.versionsFrom(['METEOR@1.0']);
api.use([ api.use([
'nova:lib@0.26.0-nova', 'nova:lib@0.26.1-nova',
// 'nova:i18n@0.26.0-nova', // 'nova:i18n@0.26.1-nova',
'nova:settings@0.26.0-nova', 'nova:settings@0.26.1-nova',
'nova:posts@0.26.0-nova', 'nova:posts@0.26.1-nova',
'nova:users@0.26.0-nova' 'nova:users@0.26.1-nova'
]); ]);
api.use([ api.use([
'nova:notifications@0.26.0-nova', 'nova:notifications@0.26.1-nova',
'nova:email@0.26.0-nova' 'nova:email@0.26.1-nova'
], ['client', 'server'], {weak: true}); ], ['client', 'server'], {weak: true});
api.addFiles([ api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:core", name: "nova:core",
summary: "Telescope core package", summary: "Telescope core package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/Telescope.git" git: "https://github.com/TelescopeJS/Telescope.git"
}); });
@ -10,10 +10,10 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0"); api.versionsFrom("METEOR@1.0");
var packages = [ var packages = [
'nova:lib@0.26.0-nova', // no dependencies 'nova:lib@0.26.1-nova', // no dependencies
// 'nova:messages@0.26.0-nova', // lib // 'nova:messages@0.26.1-nova', // lib
'nova:i18n@0.26.0-nova', // lib 'nova:i18n@0.26.1-nova', // lib
'nova:events@0.26.0-nova' // lib, i18n 'nova:events@0.26.1-nova' // lib, i18n
]; ];
api.use(packages); api.use(packages);

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:debug", name: "nova:debug",
summary: "Telescope debug package", summary: "Telescope debug package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope.git" git: "https://github.com/TelescopeJS/telescope.git"
}); });
@ -13,10 +13,10 @@ Package.onUse(function (api) {
// Nova packages // Nova packages
'nova:core@0.26.0-nova', 'nova:core@0.26.1-nova',
'nova:posts@0.26.0-nova', 'nova:posts@0.26.1-nova',
'nova:users@0.26.0-nova', 'nova:users@0.26.1-nova',
'nova:comments@0.26.0-nova', 'nova:comments@0.26.1-nova',
'fourseven:scss@3.4.1' 'fourseven:scss@3.4.1'

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:demo", name: "nova:demo",
summary: "Telescope components package", summary: "Telescope components package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope.git" git: "https://github.com/TelescopeJS/telescope.git"
}); });
@ -13,7 +13,7 @@ Package.onUse(function (api) {
// Nova packages // Nova packages
'nova:core@0.26.0-nova', 'nova:core@0.26.1-nova',
'utilities:react-list-container@0.1.8', 'utilities:react-list-container@0.1.8',
'utilities:smart-publications@0.1.4', 'utilities:smart-publications@0.1.4',

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:email-templates", name: "nova:email-templates",
summary: "Telescope email templates package", summary: "Telescope email templates package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope.git" git: "https://github.com/TelescopeJS/telescope.git"
}); });
@ -10,10 +10,10 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']); api.versionsFrom(['METEOR@1.0']);
api.use([ api.use([
'nova:core@0.26.0-nova', 'nova:core@0.26.1-nova',
'nova:posts@0.26.0-nova', 'nova:posts@0.26.1-nova',
'nova:users@0.26.0-nova', 'nova:users@0.26.1-nova',
'nova:comments@0.26.0-nova', 'nova:comments@0.26.1-nova',
'dburles:spacebars-tohtml@1.0.1' 'dburles:spacebars-tohtml@1.0.1'
]); ]);

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:email", name: "nova:email",
summary: "Telescope email package", summary: "Telescope email package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope-email.git" git: "https://github.com/TelescopeJS/telescope-email.git"
}); });
@ -14,7 +14,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']); api.versionsFrom(['METEOR@1.0']);
api.use([ api.use([
'nova:core@0.26.0-nova', 'nova:core@0.26.1-nova',
'sacha:juice@0.1.4' 'sacha:juice@0.1.4'
]); ]);

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:embedly", name: "nova:embedly",
summary: "Telescope Embedly module package", summary: "Telescope Embedly module package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: 'https://github.com/TelescopeJS/telescope-embedly.git' git: 'https://github.com/TelescopeJS/telescope-embedly.git'
}); });
@ -10,9 +10,9 @@ Package.onUse( function(api) {
api.versionsFrom("METEOR@1.0"); api.versionsFrom("METEOR@1.0");
api.use([ api.use([
'nova:core@0.26.0-nova', 'nova:core@0.26.1-nova',
'nova:posts@0.26.0-nova', 'nova:posts@0.26.1-nova',
'nova:users@0.26.0-nova' 'nova:users@0.26.1-nova'
]); ]);
api.addFiles([ api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:events", name: "nova:events",
summary: "Telescope event tracking package", summary: "Telescope event tracking package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/Telescope.git" git: "https://github.com/TelescopeJS/Telescope.git"
}); });
@ -10,8 +10,8 @@ Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0"); api.versionsFrom("METEOR@1.0");
api.use([ api.use([
'nova:lib@0.26.0-nova', 'nova:lib@0.26.1-nova',
// 'nova:i18n@0.26.0-nova' // 'nova:i18n@0.26.1-nova'
]); ]);
api.addFiles([ api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:forms", name: "nova:forms",
summary: "Form containers for React", summary: "Form containers for React",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/meteor-utilities/react-form-containers.git" git: "https://github.com/meteor-utilities/react-form-containers.git"
}); });

View file

@ -14,10 +14,10 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']); api.versionsFrom(['METEOR@1.0']);
api.use([ api.use([
'nova:core@0.26.0-nova', 'nova:core@0.26.1-nova',
'nova:posts@0.26.0-nova', 'nova:posts@0.26.1-nova',
'nova:comments@0.26.0-nova', 'nova:comments@0.26.1-nova',
'nova:users@0.26.0-nova' 'nova:users@0.26.1-nova'
]); ]);
api.addFiles([ api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:i18n", name: "nova:i18n",
summary: "Telescope i18n package", summary: "Telescope i18n package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/Telescope.git" git: "https://github.com/TelescopeJS/Telescope.git"
}); });
@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']); api.versionsFrom(['METEOR@1.0']);
api.use([ api.use([
'nova:lib@0.26.0-nova' 'nova:lib@0.26.1-nova'
// 'tap:i18n@1.8.0' // 'tap:i18n@1.8.0'
]); ]);

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:kadira", name: "nova:kadira",
summary: "Telescope Kadira package", summary: "Telescope Kadira package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope-kadira.git" git: "https://github.com/TelescopeJS/telescope-kadira.git"
}); });
@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']); api.versionsFrom(['METEOR@1.0']);
api.use([ api.use([
'nova:core@0.26.0-nova', 'nova:core@0.26.1-nova',
'meteorhacks:kadira@2.28.5', 'meteorhacks:kadira@2.28.5',
'kadira:debug@3.2.2' 'kadira:debug@3.2.2'
], ['client', 'server']); ], ['client', 'server']);

View file

@ -5,7 +5,7 @@
Telescope = {}; Telescope = {};
Telescope.VERSION = '0.26.0-nova'; Telescope.VERSION = '0.26.1-nova';
// ------------------------------------- Config -------------------------------- // // ------------------------------------- Config -------------------------------- //

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: 'nova:lib', name: 'nova:lib',
summary: 'Telescope libraries.', summary: 'Telescope libraries.',
version: '0.26.0-nova', version: '0.26.1-nova',
git: "https://github.com/TelescopeJS/Telescope.git" git: "https://github.com/TelescopeJS/Telescope.git"
}); });

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:newsletter", name: "nova:newsletter",
summary: "Telescope email newsletter package", summary: "Telescope email newsletter package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope-newsletter.git" git: "https://github.com/TelescopeJS/telescope-newsletter.git"
}); });
@ -14,11 +14,11 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0"); api.versionsFrom("METEOR@1.0");
api.use([ api.use([
'nova:core@0.26.0-nova', 'nova:core@0.26.1-nova',
'nova:posts@0.26.0-nova', 'nova:posts@0.26.1-nova',
'nova:comments@0.26.0-nova', 'nova:comments@0.26.1-nova',
'nova:users@0.26.0-nova', 'nova:users@0.26.1-nova',
'nova:email@0.26.0-nova', 'nova:email@0.26.1-nova',
'miro:mailchimp@1.1.0', 'miro:mailchimp@1.1.0',
]); ]);

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:notifications", name: "nova:notifications",
summary: "Telescope notifications package", summary: "Telescope notifications package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope-notifications.git" git: "https://github.com/TelescopeJS/telescope-notifications.git"
}); });
@ -10,9 +10,9 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0"); api.versionsFrom("METEOR@1.0");
api.use([ api.use([
'nova:core@0.26.0-nova', 'nova:core@0.26.1-nova',
'nova:email@0.26.0-nova', 'nova:email@0.26.1-nova',
'nova:users@0.26.0-nova' 'nova:users@0.26.1-nova'
// 'kestanous:herald@1.3.0', // 'kestanous:herald@1.3.0',
// 'kestanous:herald-email@0.5.0' // 'kestanous:herald-email@0.5.0'
]); ]);

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:posts", name: "nova:posts",
summary: "Telescope posts package", summary: "Telescope posts package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope-posts.git" git: "https://github.com/TelescopeJS/telescope-posts.git"
}); });
@ -14,16 +14,16 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']); api.versionsFrom(['METEOR@1.0']);
api.use([ api.use([
'nova:core@0.26.0-nova', 'nova:core@0.26.1-nova',
// 'nova:i18n@0.26.0-nova', // 'nova:i18n@0.26.1-nova',
// 'nova:settings@0.26.0-nova', // 'nova:settings@0.26.1-nova',
'nova:users@0.26.0-nova', 'nova:users@0.26.1-nova',
// 'nova:comments@0.26.0-nova' // 'nova:comments@0.26.1-nova'
]); ]);
api.use([ api.use([
'nova:notifications@0.26.0-nova', 'nova:notifications@0.26.1-nova',
'nova:email@0.26.0-nova' 'nova:email@0.26.1-nova'
], ['client', 'server'], {weak: true}); ], ['client', 'server'], {weak: true});
api.addFiles([ api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:rss", name: "nova:rss",
summary: "Telescope RSS package", summary: "Telescope RSS package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope-rss.git" git: "https://github.com/TelescopeJS/telescope-rss.git"
}); });
@ -9,7 +9,7 @@ Npm.depends({rss: "1.1.1"});
Package.onUse(function (api) { Package.onUse(function (api) {
api.use(['nova:core@0.26.0-nova']); api.use(['nova:core@0.26.1-nova']);
api.addFiles(['lib/server/rss.js', 'lib/server/routes.js'], ['server']); api.addFiles(['lib/server/rss.js', 'lib/server/routes.js'], ['server']);

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:search", name: "nova:search",
summary: "Telescope search package", summary: "Telescope search package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope-pages.git" git: "https://github.com/TelescopeJS/telescope-pages.git"
}); });
@ -9,7 +9,7 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0"); api.versionsFrom("METEOR@1.0");
api.use(['nova:core@0.26.0-nova']); api.use(['nova:core@0.26.1-nova']);
api.addFiles([ api.addFiles([
'lib/parameters.js', 'lib/parameters.js',

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:settings", name: "nova:settings",
summary: "Telescope settings package only necessary if you're storing settings in a collection", summary: "Telescope settings package only necessary if you're storing settings in a collection",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/Telescope.git" git: "https://github.com/TelescopeJS/Telescope.git"
}); });
@ -10,9 +10,9 @@ Package.onUse(function(api) {
api.versionsFrom(['METEOR@1.0']); api.versionsFrom(['METEOR@1.0']);
api.use([ api.use([
'nova:lib@0.26.0-nova', 'nova:lib@0.26.1-nova',
'nova:users@0.26.0-nova' 'nova:users@0.26.1-nova'
// 'nova:i18n@0.26.0-nova' // 'nova:i18n@0.26.1-nova'
]); ]);
api.addFiles([ api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:share", name: "nova:share",
summary: "Telescope share module package", summary: "Telescope share module package",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/telescope-share.git" git: "https://github.com/TelescopeJS/telescope-share.git"
}); });
@ -10,7 +10,7 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0"); api.versionsFrom("METEOR@1.0");
api.use([ api.use([
'nova:core@0.26.0-nova', 'nova:core@0.26.1-nova',
'fourseven:scss@3.4.1' 'fourseven:scss@3.4.1'
]); ]);

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: 'nova:users', name: 'nova:users',
summary: 'Telescope permissions.', summary: 'Telescope permissions.',
version: '0.26.0-nova', version: '0.26.1-nova',
git: "https://github.com/TelescopeJS/Telescope.git" git: "https://github.com/TelescopeJS/Telescope.git"
}); });
@ -10,11 +10,11 @@ Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']); api.versionsFrom(['METEOR@1.0']);
api.use([ api.use([
'nova:core@0.26.0-nova' 'nova:core@0.26.1-nova'
]); ]);
api.use([ api.use([
'nova:email@0.26.0-nova' 'nova:email@0.26.1-nova'
], ['client', 'server'], {weak: true}); ], ['client', 'server'], {weak: true});
api.addFiles([ api.addFiles([

View file

@ -1,7 +1,7 @@
Package.describe({ Package.describe({
name: "nova:voting", name: "nova:voting",
summary: "Telescope scoring package.", summary: "Telescope scoring package.",
version: "0.26.0-nova", version: "0.26.1-nova",
git: "https://github.com/TelescopeJS/Telescope.git" git: "https://github.com/TelescopeJS/Telescope.git"
}); });
@ -9,11 +9,11 @@ Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0"); api.versionsFrom("METEOR@1.0");
api.use(['nova:core@0.26.0-nova']); api.use(['nova:core@0.26.1-nova']);
api.use([ api.use([
'nova:posts@0.26.0-nova', 'nova:posts@0.26.1-nova',
'nova:comments@0.26.0-nova' 'nova:comments@0.26.1-nova'
], ['client', 'server']); ], ['client', 'server']);
api.addFiles([ api.addFiles([