mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 20:16:39 -04:00
38 lines
660 B
JavaScript
38 lines
660 B
JavaScript
Package.describe({
|
|
name: "nova:forms",
|
|
summary: "Form containers for React",
|
|
version: "1.2.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.2.0',
|
|
'nova:users@1.2.0',
|
|
|
|
'ecmascript',
|
|
'check',
|
|
'aldeed:collection2-core@2.0.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');
|
|
});
|