mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00

Now `vulcan:ui-bootstrap` is explicitely loaded in the `vulcan:forms` package. This avoid undefined `Components.Button` if the use did not load a specific styling package
22 lines
671 B
JavaScript
22 lines
671 B
JavaScript
Package.describe({
|
|
name: "vulcan:forms",
|
|
summary: "Form containers for React",
|
|
version: "1.11.2",
|
|
git: "https://github.com/meteor-utilities/react-form-containers.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.versionsFrom("1.6.1");
|
|
|
|
api.use(["vulcan:core@1.11.2", "vulcan:ui-bootstrap@1.11.2", "fourseven:scss@4.5.0"]);
|
|
|
|
api.addFiles(["lib/stylesheets/style.scss", "lib/stylesheets/datetime.scss"], "client");
|
|
|
|
api.mainModule("lib/client/main.js", ["client"]);
|
|
api.mainModule("lib/server/main.js", ["server"]);
|
|
});
|
|
|
|
Package.onTest(function (api) {
|
|
api.use(["ecmascript", "meteortesting:mocha", "vulcan:forms"]);
|
|
api.mainModule("./test/index.js");
|
|
});
|