mirror of
https://github.com/vale981/Vulcan
synced 2025-03-05 09:31:43 -05:00
v1.8.1
This commit is contained in:
parent
b7404f88ae
commit
fc3a5d58b1
27 changed files with 70 additions and 70 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "Vulcan",
|
"name": "Vulcan",
|
||||||
"version": "1.8.0",
|
"version": "1.8.1",
|
||||||
"engines": {
|
"engines": {
|
||||||
"npm": "^3.0"
|
"npm": "^3.0"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "example-forum",
|
name: "example-forum",
|
||||||
summary: "Vulcan forum package",
|
summary: "Vulcan forum package",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -14,11 +14,11 @@ Package.onUse(function (api) {
|
||||||
'fourseven:scss@4.5.0',
|
'fourseven:scss@4.5.0',
|
||||||
|
|
||||||
// vulcan core
|
// vulcan core
|
||||||
'vulcan:core@1.8.0',
|
'vulcan:core@1.8.1',
|
||||||
|
|
||||||
// vulcan packages
|
// vulcan packages
|
||||||
'vulcan:voting@1.8.0',
|
'vulcan:voting@1.8.1',
|
||||||
'vulcan:accounts@1.8.0',
|
'vulcan:accounts@1.8.1',
|
||||||
'vulcan:email',
|
'vulcan:email',
|
||||||
'vulcan:forms',
|
'vulcan:forms',
|
||||||
'vulcan:newsletter',
|
'vulcan:newsletter',
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: 'vulcan:accounts',
|
name: 'vulcan:accounts',
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
summary: 'Accounts UI for React in Meteor 1.3+',
|
summary: 'Accounts UI for React in Meteor 1.3+',
|
||||||
git: 'https://github.com/studiointeract/accounts-ui',
|
git: 'https://github.com/studiointeract/accounts-ui',
|
||||||
documentation: 'README.md'
|
documentation: 'README.md'
|
||||||
|
@ -9,7 +9,7 @@ Package.describe({
|
||||||
Package.onUse(function(api) {
|
Package.onUse(function(api) {
|
||||||
api.versionsFrom('1.3');
|
api.versionsFrom('1.3');
|
||||||
|
|
||||||
api.use('vulcan:core@1.8.0');
|
api.use('vulcan:core@1.8.1');
|
||||||
|
|
||||||
api.use('ecmascript');
|
api.use('ecmascript');
|
||||||
api.use('tracker');
|
api.use('tracker');
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:admin",
|
name: "vulcan:admin",
|
||||||
summary: "Vulcan components package",
|
summary: "Vulcan components package",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ Package.onUse(function (api) {
|
||||||
'fourseven:scss@4.5.0',
|
'fourseven:scss@4.5.0',
|
||||||
'dynamic-import@0.1.1',
|
'dynamic-import@0.1.1',
|
||||||
// Vulcan packages
|
// Vulcan packages
|
||||||
'vulcan:core@1.8.0',
|
'vulcan:core@1.8.1',
|
||||||
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: 'vulcan:cloudinary',
|
name: 'vulcan:cloudinary',
|
||||||
summary: 'Vulcan file upload package.',
|
summary: 'Vulcan file upload package.',
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ Package.onUse(function (api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:core@1.8.0'
|
'vulcan:core@1.8.1'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.mainModule("lib/client/main.js", "client");
|
api.mainModule("lib/client/main.js", "client");
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:core",
|
name: "vulcan:core",
|
||||||
summary: "Vulcan core package",
|
summary: "Vulcan core package",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,15 +10,15 @@ Package.onUse(function(api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:lib@1.8.0',
|
'vulcan:lib@1.8.1',
|
||||||
'vulcan:i18n@1.8.0',
|
'vulcan:i18n@1.8.1',
|
||||||
'vulcan:users@1.8.0',
|
'vulcan:users@1.8.1',
|
||||||
'vulcan:routing@1.8.0',
|
'vulcan:routing@1.8.1',
|
||||||
'vulcan:debug@1.8.0',
|
'vulcan:debug@1.8.1',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.imply([
|
api.imply([
|
||||||
'vulcan:lib@1.8.0'
|
'vulcan:lib@1.8.1'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.mainModule('lib/server/main.js', 'server');
|
api.mainModule('lib/server/main.js', 'server');
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:debug",
|
name: "vulcan:debug",
|
||||||
summary: "Vulcan debug package",
|
summary: "Vulcan debug package",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git",
|
git: "https://github.com/VulcanJS/Vulcan.git",
|
||||||
debugOnly: true
|
debugOnly: true
|
||||||
});
|
});
|
||||||
|
@ -17,8 +17,8 @@ Package.onUse(function (api) {
|
||||||
|
|
||||||
// Vulcan packages
|
// Vulcan packages
|
||||||
|
|
||||||
'vulcan:lib@1.8.0',
|
'vulcan:lib@1.8.1',
|
||||||
'vulcan:email@1.8.0',
|
'vulcan:email@1.8.1',
|
||||||
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:email",
|
name: "vulcan:email",
|
||||||
summary: "Vulcan email package",
|
summary: "Vulcan email package",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ Package.onUse(function (api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:lib@1.8.0'
|
'vulcan:lib@1.8.1'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.mainModule("lib/server.js", "server");
|
api.mainModule("lib/server.js", "server");
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:embed",
|
name: "vulcan:embed",
|
||||||
summary: "Vulcan Embed package",
|
summary: "Vulcan Embed package",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: 'https://github.com/VulcanJS/Vulcan.git'
|
git: 'https://github.com/VulcanJS/Vulcan.git'
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ Package.onUse( function(api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:core@1.8.0',
|
'vulcan:core@1.8.1',
|
||||||
'fourseven:scss@4.5.0'
|
'fourseven:scss@4.5.0'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:events-ga",
|
name: "vulcan:events-ga",
|
||||||
summary: "Vulcan Google Analytics event tracking package",
|
summary: "Vulcan Google Analytics event tracking package",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,8 +10,8 @@ Package.onUse(function(api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:core@1.8.0',
|
'vulcan:core@1.8.1',
|
||||||
'vulcan:events@1.8.0',
|
'vulcan:events@1.8.1',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.mainModule("lib/server/main.js", "server");
|
api.mainModule("lib/server/main.js", "server");
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: 'vulcan:events-intercom',
|
name: 'vulcan:events-intercom',
|
||||||
summary: 'Vulcan Intercom integration package.',
|
summary: 'Vulcan Intercom integration package.',
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,8 +10,8 @@ Package.onUse(function (api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:core@1.8.0',
|
'vulcan:core@1.8.1',
|
||||||
'vulcan:events@1.8.0'
|
'vulcan:events@1.8.1'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.mainModule("lib/client/main.js", "client");
|
api.mainModule("lib/client/main.js", "client");
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:events-internal",
|
name: "vulcan:events-internal",
|
||||||
summary: "Vulcan internal event tracking package",
|
summary: "Vulcan internal event tracking package",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,8 +10,8 @@ Package.onUse(function(api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:core@1.8.0',
|
'vulcan:core@1.8.1',
|
||||||
'vulcan:events@1.8.0',
|
'vulcan:events@1.8.1',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.mainModule("lib/server/main.js", "server");
|
api.mainModule("lib/server/main.js", "server");
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:events-segment",
|
name: "vulcan:events-segment",
|
||||||
summary: "Vulcan Segment",
|
summary: "Vulcan Segment",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,8 +10,8 @@ Package.onUse(function (api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:core@1.8.0',
|
'vulcan:core@1.8.1',
|
||||||
'vulcan:events@1.8.0',
|
'vulcan:events@1.8.1',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.mainModule('lib/server/main.js', 'server');
|
api.mainModule('lib/server/main.js', 'server');
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:events",
|
name: "vulcan:events",
|
||||||
summary: "Vulcan event tracking package",
|
summary: "Vulcan event tracking package",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ Package.onUse(function(api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:core@1.8.0',
|
'vulcan:core@1.8.1',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.mainModule("lib/server/main.js", "server");
|
api.mainModule("lib/server/main.js", "server");
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:forms-tags",
|
name: "vulcan:forms-tags",
|
||||||
summary: "Vulcan tag input package",
|
summary: "Vulcan tag input package",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: 'https://github.com/VulcanJS/Vulcan.git'
|
git: 'https://github.com/VulcanJS/Vulcan.git'
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,8 +10,8 @@ Package.onUse( function(api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:core@1.8.0',
|
'vulcan:core@1.8.1',
|
||||||
'vulcan:forms@1.8.0'
|
'vulcan:forms@1.8.1'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.mainModule("lib/export.js", ["client", "server"]);
|
api.mainModule("lib/export.js", ["client", "server"]);
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:forms-upload",
|
name: "vulcan:forms-upload",
|
||||||
summary: "Vulcan package extending vulcan:forms to upload images to Cloudinary from a drop zone.",
|
summary: "Vulcan package extending vulcan:forms to upload images to Cloudinary from a drop zone.",
|
||||||
version: "1.8.0",
|
version: "1.8.1",
|
||||||
git: 'https://github.com/xavcz/nova-forms-upload.git'
|
git: 'https://github.com/xavcz/nova-forms-upload.git'
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,8 +10,8 @@ Package.onUse( function(api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:core@1.8.0',
|
'vulcan:core@1.8.1',
|
||||||
'vulcan:forms@1.8.0',
|
'vulcan:forms@1.8.1',
|
||||||
'fourseven:scss@4.5.0'
|
'fourseven:scss@4.5.0'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:forms",
|
name: "vulcan:forms",
|
||||||
summary: "Form containers for React",
|
summary: "Form containers for React",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/meteor-utilities/react-form-containers.git"
|
git: "https://github.com/meteor-utilities/react-form-containers.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ Package.onUse(function(api) {
|
||||||
api.versionsFrom("METEOR@1.3");
|
api.versionsFrom("METEOR@1.3");
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:core@1.8.0',
|
'vulcan:core@1.8.1',
|
||||||
|
|
||||||
'fourseven:scss@4.5.0'
|
'fourseven:scss@4.5.0'
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:i18n-en-us",
|
name: "vulcan:i18n-en-us",
|
||||||
summary: "Vulcan i18n package (en_US)",
|
summary: "Vulcan i18n package (en_US)",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ Package.onUse(function (api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:core@1.8.0'
|
'vulcan:core@1.8.1'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.addFiles([
|
api.addFiles([
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: 'vulcan:i18n',
|
name: 'vulcan:i18n',
|
||||||
summary: "i18n client polyfill",
|
summary: "i18n client polyfill",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan"
|
git: "https://github.com/VulcanJS/Vulcan"
|
||||||
});
|
});
|
||||||
|
|
||||||
Package.onUse(function (api) {
|
Package.onUse(function (api) {
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:lib@1.8.0',
|
'vulcan:lib@1.8.1',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.mainModule('lib/server/main.js', 'server');
|
api.mainModule('lib/server/main.js', 'server');
|
||||||
|
|
|
@ -7,7 +7,7 @@ import SimpleSchema from 'simpl-schema';
|
||||||
|
|
||||||
Vulcan = {};
|
Vulcan = {};
|
||||||
|
|
||||||
Vulcan.VERSION = '1.8.0';
|
Vulcan.VERSION = '1.8.1';
|
||||||
|
|
||||||
// ------------------------------------- Schemas -------------------------------- //
|
// ------------------------------------- Schemas -------------------------------- //
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: 'vulcan:lib',
|
name: 'vulcan:lib',
|
||||||
summary: 'Vulcan libraries.',
|
summary: 'Vulcan libraries.',
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:newsletter",
|
name: "vulcan:newsletter",
|
||||||
summary: "Vulcan email newsletter package",
|
summary: "Vulcan email newsletter package",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,8 +10,8 @@ Package.onUse(function (api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:core@1.8.0',
|
'vulcan:core@1.8.1',
|
||||||
'vulcan:email@1.8.0'
|
'vulcan:email@1.8.1'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.mainModule('lib/server/main.js', 'server');
|
api.mainModule('lib/server/main.js', 'server');
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: 'vulcan:payments',
|
name: 'vulcan:payments',
|
||||||
summary: "Vulcan payments package",
|
summary: "Vulcan payments package",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
Package.onUse(function (api) {
|
Package.onUse(function (api) {
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:core@1.8.0',
|
'vulcan:core@1.8.1',
|
||||||
|
|
||||||
'fourseven:scss@4.5.4',
|
'fourseven:scss@4.5.4',
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:routing",
|
name: "vulcan:routing",
|
||||||
summary: "Vulcan router package",
|
summary: "Vulcan router package",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ Package.onUse(function (api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:lib@1.8.0',
|
'vulcan:lib@1.8.1',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.mainModule('lib/server/main.js', 'server');
|
api.mainModule('lib/server/main.js', 'server');
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:subscribe",
|
name: "vulcan:subscribe",
|
||||||
summary: "Subscribe to posts, users, etc. to be notified of new activity",
|
summary: "Subscribe to posts, users, etc. to be notified of new activity",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -11,14 +11,14 @@ Package.onUse(function (api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:core@1.8.0',
|
'vulcan:core@1.8.1',
|
||||||
// dependencies on posts, categories are done with nested imports to reduce explicit dependencies
|
// dependencies on posts, categories are done with nested imports to reduce explicit dependencies
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:posts@1.8.0',
|
'vulcan:posts@1.8.1',
|
||||||
'vulcan:comments@1.8.0',
|
'vulcan:comments@1.8.1',
|
||||||
'vulcan:categories@1.8.0',
|
'vulcan:categories@1.8.1',
|
||||||
], {weak: true});
|
], {weak: true});
|
||||||
|
|
||||||
api.mainModule("lib/modules.js", ["client"]);
|
api.mainModule("lib/modules.js", ["client"]);
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: 'vulcan:users',
|
name: 'vulcan:users',
|
||||||
summary: 'Vulcan permissions.',
|
summary: 'Vulcan permissions.',
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ Package.onUse(function (api) {
|
||||||
api.versionsFrom('METEOR@1.5.2');
|
api.versionsFrom('METEOR@1.5.2');
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'vulcan:lib@1.8.0'
|
'vulcan:lib@1.8.1'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
api.mainModule("lib/server.js", "server");
|
api.mainModule("lib/server.js", "server");
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Package.describe({
|
Package.describe({
|
||||||
name: "vulcan:voting",
|
name: "vulcan:voting",
|
||||||
summary: "Vulcan scoring package.",
|
summary: "Vulcan scoring package.",
|
||||||
version: '1.8.0',
|
version: '1.8.1',
|
||||||
git: "https://github.com/VulcanJS/Vulcan.git"
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -11,8 +11,8 @@ Package.onUse(function (api) {
|
||||||
|
|
||||||
api.use([
|
api.use([
|
||||||
'fourseven:scss@4.5.0',
|
'fourseven:scss@4.5.0',
|
||||||
'vulcan:core@1.8.0',
|
'vulcan:core@1.8.1',
|
||||||
'vulcan:i18n@1.8.0',
|
'vulcan:i18n@1.8.1',
|
||||||
], ['client', 'server']);
|
], ['client', 'server']);
|
||||||
|
|
||||||
api.mainModule("lib/server/main.js", "server");
|
api.mainModule("lib/server/main.js", "server");
|
||||||
|
|
Loading…
Add table
Reference in a new issue