mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 04:16:37 -04:00

* Revert "add note link to issue in collection2 on mutation insert, remove debug console logs on mutation edit" This reverts commit7a15103de7
. * Revert "node simpl-schema + collection2-core: fix vote by specifying the right type of the array (dont use blackbox in the end!)" This reverts commite894c3224c
. * Revert "add graphql date type (fix problem with node simple schema), fix an update bug on date picker, add edit check on custom post item, add `blackbox: true` for arrays field (validation problem with simple-schema)" This reverts commit9d84fbec98
. * Revert "use node `simpl-schema` by aldeed to replace `meteor/aldeed:simple-schema` ; use the meteor collection2 core package as recommended" This reverts commit016935f4fa
. * revert before node-simple-schema, fix obj.hasOwnProperty undefined error thrown by simple-schema & collection2 * CustomPostsItem: check on renderActions; withDocument/List: pollInterval 20seconds by default; DateTime form component enhancement + GraphQLDate type
60 lines
1.2 KiB
JavaScript
60 lines
1.2 KiB
JavaScript
Package.describe({
|
|
name: 'nova:lib',
|
|
summary: 'Telescope libraries.',
|
|
version: '1.0.0',
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
var packages = [
|
|
|
|
// Meteor packages
|
|
|
|
'meteor-base',
|
|
'mongo',
|
|
'tracker',
|
|
'service-configuration',
|
|
'standard-minifiers',
|
|
'modules',
|
|
'accounts-base',
|
|
'check',
|
|
'http',
|
|
'email',
|
|
'tracker',
|
|
'ecmascript',
|
|
// 'react-meteor-data@0.2.8',
|
|
'service-configuration',
|
|
'shell-server',
|
|
//'apollo@0.1.2',
|
|
|
|
// Third-party packages
|
|
|
|
'aldeed:simple-schema@1.5.3',
|
|
'aldeed:collection2@2.10.0',
|
|
'meteorhacks:picker@1.0.3',
|
|
'dburles:collection-helpers@1.0.4',
|
|
'percolatestudio:synced-cron@1.1.0',
|
|
'jparker:gravatar@0.4.1',
|
|
// 'kadira:flow-router-ssr@3.13.0',
|
|
"reactrouter:react-router-ssr@3.1.6-patch",
|
|
// 'kadira:flow-router@2.12.1',
|
|
// 'utilities:smart-methods@0.1.4',
|
|
'meteorhacks:inject-initial@1.0.4',
|
|
// 'peerlibrary:reactive-publish@0.2.0'
|
|
];
|
|
|
|
api.use(packages);
|
|
|
|
api.imply(packages);
|
|
|
|
// api.export([
|
|
// 'Telescope'
|
|
// ]);
|
|
|
|
api.mainModule("lib/server.js", "server");
|
|
api.mainModule("lib/client.js", "client");
|
|
|
|
});
|