mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
19 lines
380 B
JavaScript
19 lines
380 B
JavaScript
Package.describe({
|
|
name: 'vulcan:ui-bootstrap',
|
|
summary: 'Vulcan Bootstrap UI components.',
|
|
version: '1.12.0',
|
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom('1.6.1');
|
|
|
|
api.use([
|
|
'vulcan:lib@1.12.0'
|
|
]);
|
|
|
|
api.mainModule("lib/server/main.js", "server");
|
|
api.mainModule("lib/client/main.js", "client");
|
|
|
|
});
|