Makefile and sass build working

This commit is contained in:
Max Lynch
2013-08-23 10:57:21 -05:00
parent 9649d0f2a2
commit 1b490566e9
7 changed files with 30 additions and 38 deletions

2
.gitignore vendored
View File

@ -1,2 +1,4 @@
.DS_Store .DS_Store
*.sw[mpcod] *.sw[mpcod]
.sass-cache/

3
Gruntfile.js Normal file
View File

@ -0,0 +1,3 @@
module.exports = function(grunt) {
}

6
Makefile Normal file
View File

@ -0,0 +1,6 @@
all: release
release:
@sass -I scss/ scss/framework.scss:dist/framework.css

1
dist/framework.css vendored Normal file
View File

@ -0,0 +1 @@
@charset "UTF-8";

15
package.json Normal file
View File

@ -0,0 +1,15 @@
{
"name": "framework",
"private": true,
"version": "0.0.01",
"devDependencies": {
"grunt": "~0.4.0",
"grunt-contrib-watch": "~0.1.0",
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/zurb/foundation/blob/master/LICENSE"
}
]
}

View File

@ -1,43 +1,8 @@
@charset "UTF-8"; @charset "UTF-8";
// This includes all of the framework global elements that are needed to work with any of the other files. // This includes all of the framework global elements that are needed to work with any of the other files.
@import "foundation/variables"; @import "framework/variables";
// Foundation Components // Components
@import @import
"" "framework/components/buttons";
"foundation/components/global",
"foundation/components/grid",
"foundation/components/visibility",
"foundation/components/block-grid",
"foundation/components/type",
"foundation/components/buttons",
"foundation/components/forms",
"foundation/components/button-groups",
"foundation/components/dropdown-buttons",
"foundation/components/split-buttons",
"foundation/components/flex-video",
"foundation/components/section",
"foundation/components/top-bar",
"foundation/components/orbit",
"foundation/components/reveal",
"foundation/components/joyride",
"foundation/components/clearing",
"foundation/components/alert-boxes",
"foundation/components/breadcrumbs",
"foundation/components/custom-forms",
"foundation/components/keystrokes",
"foundation/components/labels",
"foundation/components/inline-lists",
"foundation/components/pagination",
"foundation/components/panels",
"foundation/components/pricing-tables",
"foundation/components/progress-bars",
"foundation/components/side-nav",
"foundation/components/sub-nav",
"foundation/components/switch",
"foundation/components/magellan",
"foundation/components/tables",
"foundation/components/thumbs",
"foundation/components/tooltips",
"foundation/components/dropdown";

View File