2016-02-19 09:54:13 +09:00
|
|
|
Package.describe({
|
2016-03-30 09:24:52 +09:00
|
|
|
name: "nova:base-styles",
|
2016-02-19 09:54:13 +09:00
|
|
|
summary: "Nova basic styles package",
|
2016-06-12 12:15:11 +09:00
|
|
|
version: "0.26.3-nova",
|
2016-02-19 09:54:13 +09:00
|
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
|
|
|
|
api.use([
|
2016-06-12 12:15:11 +09:00
|
|
|
'nova:core@0.26.3-nova',
|
2016-03-24 10:56:47 +09:00
|
|
|
'fourseven:scss@3.4.1',
|
|
|
|
// 'juliancwirko:postcss@1.0.0-rc.4',
|
|
|
|
// 'seba:minifiers-autoprefixer@0.0.1',
|
|
|
|
// 'twbs:bootstrap@=4.0.0-alpha.2'
|
2016-02-19 09:54:13 +09:00
|
|
|
]);
|
|
|
|
|
|
|
|
api.addFiles([
|
2016-03-24 10:56:47 +09:00
|
|
|
'lib/stylesheets/bootstrap.css',
|
|
|
|
|
|
|
|
// 'lib/stylesheets/solid.1.4.4.css',
|
2016-03-30 10:06:12 +09:00
|
|
|
'lib/stylesheets/_breakpoints.scss',
|
2016-03-24 16:03:30 +09:00
|
|
|
'lib/stylesheets/_colors.scss',
|
|
|
|
'lib/stylesheets/_variables.scss',
|
|
|
|
'lib/stylesheets/_global.scss',
|
2016-04-04 11:30:14 +09:00
|
|
|
'lib/stylesheets/_accounts.scss',
|
2016-03-24 16:03:30 +09:00
|
|
|
'lib/stylesheets/_categories.scss',
|
2016-03-25 10:45:28 +09:00
|
|
|
'lib/stylesheets/_cheatsheet.scss',
|
2016-03-24 16:03:30 +09:00
|
|
|
'lib/stylesheets/_comments.scss',
|
2016-03-25 10:45:28 +09:00
|
|
|
'lib/stylesheets/_header.scss',
|
2016-05-07 18:12:16 +09:00
|
|
|
'lib/stylesheets/_forms.scss',
|
2016-03-25 10:45:28 +09:00
|
|
|
'lib/stylesheets/_other.scss',
|
2016-03-24 16:03:30 +09:00
|
|
|
'lib/stylesheets/_posts.scss',
|
2016-03-24 18:17:35 +09:00
|
|
|
'lib/stylesheets/_newsletter.scss',
|
2016-04-04 11:30:14 +09:00
|
|
|
'lib/stylesheets/_spinner.scss',
|
2016-03-24 16:03:30 +09:00
|
|
|
'lib/stylesheets/_users.scss',
|
|
|
|
'lib/stylesheets/main.scss'
|
2016-02-19 09:54:13 +09:00
|
|
|
], ['client']);
|
|
|
|
|
|
|
|
});
|