diff options
author | Francesco Pontillo <francescopontillo@gmail.com> | 2013-02-25 19:29:45 +0100 |
---|---|---|
committer | Francesco Pontillo <francescopontillo@gmail.com> | 2013-02-25 19:29:45 +0100 |
commit | d17bd2f33506b5b75eaa98d9dd254aee0dfaf7d6 (patch) | |
tree | 5780b83a7d1e67b45458a3987aa5403aafa4e447 /global | |
parent | cb9827df070565912aee4e24d69eb468772a41b4 (diff) |
Added package.json (for npm) and component.json (for bower).
Building with global variables is successful.
TravisCI should build correctly.
Diffstat (limited to 'global')
-rw-r--r-- | global/build-responsive.less | 3 | ||||
-rw-r--r-- | global/build-responsive_.less | 3 | ||||
-rw-r--r-- | global/build.less | 5 | ||||
-rw-r--r-- | global/build_.less | 5 | ||||
-rw-r--r-- | global/global.less | 2 |
5 files changed, 18 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-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/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 |