mirror of
https://github.com/vale981/Vulcan
synced 2025-03-12 05:26:38 -04:00
20 lines
378 B
JavaScript
20 lines
378 B
JavaScript
![]() |
Package.describe({
|
||
|
name: 'vulcan:ui-bootstrap',
|
||
|
summary: 'Vulcan Bootstrap UI components.',
|
||
|
version: '1.9.1',
|
||
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
||
|
});
|
||
|
|
||
|
Package.onUse(function (api) {
|
||
|
|
||
|
api.versionsFrom('1.6.1');
|
||
|
|
||
|
api.use([
|
||
|
'vulcan:lib@1.9.1'
|
||
|
]);
|
||
|
|
||
|
api.mainModule("lib/server/main.js", "server");
|
||
|
api.mainModule("lib/client/main.js", "client");
|
||
|
|
||
|
});
|