-
Notifications
You must be signed in to change notification settings - Fork 33
Foundation
jasonsanjose edited this page Nov 6, 2014
·
5 revisions
Official libsass template project: https://github.com/zurb/foundation-libsass-template
- Follow the quick start guide https://github.com/zurb/foundation-libsass-template#quickstart
- Open the project in Brackets File > Open Folder...
- Add a
.brackets.json
(see below) file at the root of the project. This file does 2 things:- Compile only
scss/app.scss
- Setup the
includePaths
to pull in foundation - Specify the output directory
css/
- Enable source maps
- Compile only
- Make some change to
scss/app.scss
- See compiled CSS and source map in
css/app.css
andcss/app.css.map
- DONE!
{
"path": {
"scss/app.scss": {
"sass.enabled": true,
"sass.options": {
"includePaths": [
"../bower_components/foundation/scss/"
],
"outputDir": "../css/",
"imagePath": null,
"sourceComments": "map",
"outputStyle": "nested"
},
"linting.collapsed": false
}
}
}