diff options
author | Thomas Park <thomas@thomaspark.me> | 2013-02-27 15:53:24 -0800 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2013-02-27 15:53:24 -0800 |
commit | afbf0c7d1b87854d966491bd8b3362a53d3fcab8 (patch) | |
tree | f97bfbec5178f7d051c20636d63bf65452dd9ccf /global | |
parent | 15b09ea98391d919e7722a15133de94d0cd1ac79 (diff) | |
parent | bc38f3978ff4b7225f8aaa91089fd413c2f493cb (diff) |
Merge pull request #79 from frapontillo/gh-pages
Added Grunt.js integration for compiling less files and TravisCI for testing the build
Diffstat (limited to 'global')
-rw-r--r-- | global/build-responsive.less | 3 | ||||
-rw-r--r-- | global/build.less | 5 | ||||
-rw-r--r-- | global/global.less | 2 |
3 files changed, 10 insertions, 0 deletions
diff --git a/global/build-responsive.less b/global/build-responsive.less new file mode 100644 index 00000000..cd978fb3 --- /dev/null +++ b/global/build-responsive.less @@ -0,0 +1,3 @@ +@import "../components/bootstrap/less/responsive.less"; +@import "variables.less"; +@import "../global/global.less";
\ No newline at end of file diff --git a/global/build.less b/global/build.less new file mode 100644 index 00000000..6d7f3b83 --- /dev/null +++ b/global/build.less @@ -0,0 +1,5 @@ +@import "../components/bootstrap/less/bootstrap.less"; +@import "variables.less"; +@import "../global/global.less"; +@import "bootswatch.less"; +@import "../components/bootstrap/less/utilities.less";
\ No newline at end of file diff --git a/global/global.less b/global/global.less new file mode 100644 index 00000000..39bd32a0 --- /dev/null +++ b/global/global.less @@ -0,0 +1,2 @@ +@iconSpritePath: "../img/glyphicons-halflings.png"; +@iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
\ No newline at end of file |