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