-
Notifications
You must be signed in to change notification settings - Fork 31
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
includePathsto 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.cssandcss/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
}
}
}