mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
20 lines
540 B
JavaScript
20 lines
540 B
JavaScript
Package.describe({
|
|
name: 'vulcan:forms',
|
|
summary: 'Form containers for React',
|
|
version: '1.12.16',
|
|
git: 'https://github.com/meteor-utilities/react-form-containers.git'
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.versionsFrom('1.6.1');
|
|
|
|
api.use(['vulcan:core@1.12.16']);
|
|
|
|
api.mainModule('lib/client/main.js', ['client']);
|
|
api.mainModule('lib/server/main.js', ['server']);
|
|
});
|
|
|
|
Package.onTest(function(api) {
|
|
api.use(['ecmascript', 'meteortesting:mocha', 'vulcan:test', 'vulcan:forms']);
|
|
api.mainModule('./test/index.js');
|
|
});
|