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
39 lines
695 B
JavaScript
39 lines
695 B
JavaScript
Package.describe({
|
|
name: "nova:forms",
|
|
summary: "Form containers for React",
|
|
version: "1.0.0",
|
|
git: "https://github.com/meteor-utilities/react-form-containers.git"
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
|
|
api.versionsFrom("METEOR@1.3");
|
|
|
|
api.use([
|
|
'nova:core@1.0.0',
|
|
'nova:users@1.0.0',
|
|
|
|
'ecmascript',
|
|
'check',
|
|
'aldeed:simple-schema@1.5.3',
|
|
'aldeed:collection2@2.8.0',
|
|
'fourseven:scss@3.8.0'
|
|
]);
|
|
|
|
api.addFiles([
|
|
"lib/datetime.scss"
|
|
], "client");
|
|
|
|
api.mainModule("lib/export.js", ["client", "server"]);
|
|
|
|
});
|
|
|
|
Package.onTest(function(api) {
|
|
api.use([
|
|
'ecmascript',
|
|
'tinytest',
|
|
'nova:forms'
|
|
]);
|
|
|
|
api.mainModule('test.js');
|
|
});
|