flatter-ui/package.js

43 lines
1.8 KiB
JavaScript
Raw Normal View History

2014-06-19 16:40:22 +02:00
Package.describe({
2014-06-29 02:27:19 +02:00
summary: "Less-only Flat UI that doesn't require javascript"
});
Package.on_use(function (api){
api.use('less');
api.use('jquery');
var fonts_path = 'lib/fonts/lato/';
var bootstrap_path = 'lib/bootstrap/';
// Style and scripts
2014-07-08 12:33:27 +02:00
api.add_files(bootstrap_path + 'js/bootstrap.js', 'client');
api.add_files(bootstrap_path + 'less/bootstrap.import.less', 'client');
api.add_files('lib/less/flat-ui.import.less', 'client');
2014-06-29 02:27:19 +02:00
// Fonts
2014-07-08 12:33:27 +02:00
api.add_files(fonts_path + 'lato-black.eot', 'client');
api.add_files(fonts_path + 'lato-black.svg', 'client');
api.add_files(fonts_path + 'lato-black.ttf', 'client');
api.add_files(fonts_path + 'lato-black.woff', 'client');
api.add_files(fonts_path + 'lato-bold.eot', 'client');
api.add_files(fonts_path + 'lato-bold.svg', 'client');
api.add_files(fonts_path + 'lato-bold.ttf', 'client');
api.add_files(fonts_path + 'lato-bold.woff', 'client');
api.add_files(fonts_path + 'lato-bolditalic.eot', 'client');
api.add_files(fonts_path + 'lato-bolditalic.svg', 'client');
api.add_files(fonts_path + 'lato-bolditalic.ttf', 'client');
api.add_files(fonts_path + 'lato-bolditalic.woff', 'client');
api.add_files(fonts_path + 'lato-italic.eot', 'client');
api.add_files(fonts_path + 'lato-italic.svg', 'client');
api.add_files(fonts_path + 'lato-italic.ttf', 'client');
api.add_files(fonts_path + 'lato-italic.woff', 'client');
api.add_files(fonts_path + 'lato-light.eot', 'client');
api.add_files(fonts_path + 'lato-light.svg', 'client');
api.add_files(fonts_path + 'lato-light.ttf', 'client');
api.add_files(fonts_path + 'lato-light.woff', 'client');
api.add_files(fonts_path + 'lato-regular.eot', 'client');
api.add_files(fonts_path + 'lato-regular.svg', 'client');
api.add_files(fonts_path + 'lato-regular.ttf', 'client');
api.add_files(fonts_path + 'lato-regular.woff', 'client');
2014-06-19 16:40:22 +02:00
});