mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
22 lines
423 B
JavaScript
22 lines
423 B
JavaScript
Package.describe({
|
|
name: "vulcan:base-styles",
|
|
summary: "Vulcan basic styles package",
|
|
version: '1.3.1',
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
api.use([
|
|
'vulcan:core@1.3.1',
|
|
'fourseven:scss@4.5.0',
|
|
]);
|
|
|
|
api.addFiles([
|
|
// 'lib/stylesheets/bootstrap.css',
|
|
'lib/stylesheets/main.scss'
|
|
], ['client']);
|
|
|
|
});
|