Vulcan/packages/nova-forms/package.js
Sonny Gauran 7fdd4f2cb8 Added test for nova:forms
When trying to import package, import fails because of outdated dependency on fourseven:scss

Test by executing `meteor test-packages nova:forms`
2017-01-03 02:52:18 +08:00

39 lines
689 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'
]);
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');
});