Vulcan/packages/nova-forms/package.js

30 lines
572 B
JavaScript
Raw Normal View History

Package.describe({
name: "nova:forms",
summary: "Form containers for React",
2016-11-30 12:07:45 +01:00
version: "0.27.5-nova",
git: "https://github.com/meteor-utilities/react-form-containers.git"
});
Package.onUse(function(api) {
api.versionsFrom("METEOR@1.3");
api.use([
'nova:core@0.27.4-nova',
'nova:users@0.27.4-nova',
'ecmascript',
'check',
'aldeed:simple-schema@1.5.3',
'aldeed:collection2@2.8.0',
'fourseven:scss'
]);
2016-04-18 10:03:53 +09:00
api.addFiles([
"lib/datetime.scss"
], "client");
api.mainModule("lib/export.js", ["client", "server"]);
});