From 866526b8f11f754246c2bca283819ca986d82b0a Mon Sep 17 00:00:00 2001 From: Rnhmjoj Date: Sun, 29 Jun 2014 02:27:19 +0200 Subject: [PATCH] Improve meteor support --- package.js | 41 ++++++++++++++++++++++++++++++++++++++++- smart.json | 16 +++++++++------- 2 files changed, 49 insertions(+), 8 deletions(-) diff --git a/package.js b/package.js index d38509b..4b98359 100755 --- a/package.js +++ b/package.js @@ -1,3 +1,42 @@ Package.describe({ - summary: "Less-only Flat UI that doesn't require javascript", + 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 + 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'); + + // Fonts + 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'); }); diff --git a/smart.json b/smart.json index 016bbda..3fa7cc1 100755 --- a/smart.json +++ b/smart.json @@ -1,9 +1,11 @@ { - "name": "flatter-ui", - "description": "Less-only Flat UI that doesn't require javascript", - "homepage": "https://github.com/Rnhmjoj/flatter-ui", - "author": "Michele Guerini Rocco ", - "version": "0.1.10", - "git": "https://github.com/rnhmjoj/flatter-ui.git", - "packages": {} + "name": "flatter-ui", + "description": "Less-only Flat UI that doesn't require javascript", + "homepage": "https://github.com/Rnhmjoj/flatter-ui", + "author": "Michele Guerini Rocco ", + "version": "0.2", + "git": "https://github.com/rnhmjoj/flatter-ui.git", + "packages": { + "font-awesome": "4.1.10" + } }