mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
26 lines
514 B
JavaScript
26 lines
514 B
JavaScript
Package.describe({
|
|
name: "nova:forms",
|
|
summary: "Form containers for React",
|
|
version: "0.26.3-nova",
|
|
git: "https://github.com/meteor-utilities/react-form-containers.git"
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
|
|
api.versionsFrom("METEOR@1.3");
|
|
|
|
api.use([
|
|
'ecmascript',
|
|
'check',
|
|
'aldeed:simple-schema@1.5.3',
|
|
'aldeed:collection2@2.8.0',
|
|
'fourseven:scss@3.4.1'
|
|
]);
|
|
|
|
api.addFiles([
|
|
"lib/datetime.scss"
|
|
], "client");
|
|
|
|
api.mainModule("lib/export.js", ["client", "server"]);
|
|
|
|
});
|