update readme
Showing
2 changed files
with
29 additions
and
10 deletions
... | @@ -2,25 +2,34 @@ module.exports = function(grunt) { | ... | @@ -2,25 +2,34 @@ module.exports = function(grunt) { |
2 | 2 | ||
3 | grunt.initConfig({ | 3 | grunt.initConfig({ |
4 | uglify: { | 4 | uglify: { |
5 | options: { | ||
6 | banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n', | ||
7 | sourceMap: true, | ||
8 | sourceMapIncludeSources: true | ||
9 | }, | ||
5 | dist: { | 10 | dist: { |
6 | files: { | 11 | files: { |
7 | 'js/site.min.js': [ | 12 | 'js/site.min.js': [ |
8 | 'js/jquery-1.10.1.min.js', | 13 | 'js/jquery-1.10.1.min.js', |
9 | 'js/bootstrap.min.js', | 14 | 'js/bootstrap.min.js', |
10 | 'bootflat/js/icheck.min.js', | 15 | 'bootflat/js/icheck.min.js', |
11 | 'js/application.js' | 16 | 'js/application.js' |
12 | ] | 17 | ] |
13 | } | 18 | } |
14 | } | 19 | } |
15 | }, | 20 | }, |
16 | cssmin: { | 21 | cssmin: { |
22 | options: { | ||
23 | keepSpecialComments: 0, | ||
24 | banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n', | ||
25 | }, | ||
17 | dist: { | 26 | dist: { |
18 | files: { | 27 | files: { |
19 | 'css/site.min.css': [ | 28 | 'css/site.min.css': [ |
20 | 'css/bootstrap.min.css', | 29 | 'css/bootstrap.min.css', |
21 | 'bootflat/css/bootflat.css', | 30 | 'bootflat/css/bootflat.css', |
22 | 'css/site.css' | 31 | 'css/site.css' |
23 | ], | 32 | ], |
24 | 'bootflat/css/bootflat.min.css': 'bootflat/css/bootflat.css' | 33 | 'bootflat/css/bootflat.min.css': 'bootflat/css/bootflat.css' |
25 | } | 34 | } |
26 | } | 35 | } |
... | @@ -30,7 +39,7 @@ module.exports = function(grunt) { | ... | @@ -30,7 +39,7 @@ module.exports = function(grunt) { |
30 | files: { | 39 | files: { |
31 | 'bootflat/css/bootflat.css': 'bootflat/scss/bootflat.scss' | 40 | 'bootflat/css/bootflat.css': 'bootflat/scss/bootflat.scss' |
32 | }, | 41 | }, |
33 | options: { | 42 | options: { |
34 | style: 'expanded', | 43 | style: 'expanded', |
35 | sourcemap: 'true' | 44 | sourcemap: 'true' |
36 | } | 45 | } | ... | ... |
1 | ______ _______ _______ _________ _______ _ _______ _________ | ||
2 | ( ___ \ ( ___ )( ___ )\__ __/( ____ \( \ ( ___ )\__ __/ | ||
3 | | ( ) )| ( ) || ( ) | ) ( | ( \/| ( | ( ) | ) ( | ||
4 | | (__/ / | | | || | | | | | | (__ | | | (___) | | | | ||
5 | | __ ( | | | || | | | | | | __) | | | ___ | | | | ||
6 | | ( \ \ | | | || | | | | | | ( | | | ( ) | | | | ||
7 | | )___) )| (___) || (___) | | | | ) | (____/\| ) ( | | | | ||
8 | |/ \___/ (_______)(_______) )_( |/ (_______/|/ \| )_( | ||
9 | |||
10 | ======================================================================== | ||
11 | |||
1 | # What is Bootflat? | 12 | # What is Bootflat? |
2 | 13 | ||
3 | BOOTFLAT is an open source Flat UI KIT based on Bootstrap 3.1.0 CSS framework. It provides a faster, easier and less repetitive way for web developers to create elegant web apps. | 14 | BOOTFLAT is an open source Flat UI KIT based on Bootstrap 3.1.0 CSS framework. It provides a faster, easier and less repetitive way for web developers to create elegant web apps. |
... | @@ -27,7 +38,7 @@ Bootflat's components are built with HTML5 and CSS3. The pages use `header`, `na | ... | @@ -27,7 +38,7 @@ Bootflat's components are built with HTML5 and CSS3. The pages use `header`, `na |
27 | Bootflat uses lightweight high-function plugins for maximum performance, keeping CSS and JS file sizes down. | 38 | Bootflat uses lightweight high-function plugins for maximum performance, keeping CSS and JS file sizes down. |
28 | 39 | ||
29 | ### 4. Mobile first | 40 | ### 4. Mobile first |
30 | Bootflat is fully responsive, built for mobile-first in mind. It provides off screen navigation, and almost all the widgets are compatible with all screen sizes. | 41 | Bootflat is fully responsive, built for mobile-first in mind. It provides off screen navigation, and almost all the widgets are compatible with all screen sizes. |
31 | 42 | ||
32 | ## Manual Start | 43 | ## Manual Start |
33 | Install with [bower](http://bower.io/)? | 44 | Install with [bower](http://bower.io/)? |
... | @@ -54,4 +65,3 @@ The source files are in the `bootflat/` folder. You can just grab the `bootflat/ | ... | @@ -54,4 +65,3 @@ The source files are in the `bootflat/` folder. You can just grab the `bootflat/ |
54 | ## LICENSE | 65 | ## LICENSE |
55 | 66 | ||
56 | Bootflat is licensed under the MIT Open Source license. For more information, please see the LICENSE file in this repository. | 67 | Bootflat is licensed under the MIT Open Source license. For more information, please see the LICENSE file in this repository. |
57 | ... | ... |
-
Please register or sign in to post a comment