mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 01:51:40 -05:00
21 lines
383 B
JavaScript
21 lines
383 B
JavaScript
Package.describe({
|
|
name: "base-styles",
|
|
summary: "Nova basic styles package",
|
|
version: "0.25.7",
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
api.use([
|
|
'nova:core@0.25.7'
|
|
]);
|
|
|
|
api.addFiles([
|
|
'lib/stylesheets/solid.1.4.4.css',
|
|
'lib/stylesheets/main.css'
|
|
], ['client']);
|
|
|
|
});
|