Vulcan/packages/nova-forms/package.js
Xavier Cazalot 7f99b48953 devel - revert commits related to simpl-schema (#1537)
* Revert "add note link to issue in collection2 on mutation insert, remove debug console logs on mutation edit"

This reverts commit 7a15103de7.

* Revert "node simpl-schema + collection2-core: fix vote by specifying the right type of the array (dont use blackbox in the end!)"

This reverts commit e894c3224c.

* 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 commit 9d84fbec98.

* Revert "use node `simpl-schema` by aldeed to replace `meteor/aldeed:simple-schema` ; use the meteor collection2 core package as recommended"

This reverts commit 016935f4fa.

* 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
2017-01-11 18:02:12 +01:00

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');
});