Skip to content

Commit

Permalink
fixed a typo. updated CHANGELOG. added styleguide-specific.scss to th…
Browse files Browse the repository at this point in the history
…e SASS task in gruntfile
  • Loading branch information
bmuenzenmeyer committed Jan 9, 2015
1 parent d3607f9 commit 2e8183a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ THIS CHANGELOG IS AN ATTEMPT TO DOCUMENT CHANGES TO THIS PROJECT.

PL-node-v0.1.7
- ADD: pattern export
- CHG: updated devDependencies
- FIX: fixed a type in the README and config
- THX: thanks @seanhussey for the pull request!

PL-node-v0.1.6
- ADD: media queries found in css added to ish controls
Expand Down
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ module.exports = function(grunt) {
files: {
'./source/css/style.css': './source/css/style.scss',
'./public/styleguide/css/static.css': './public/styleguide/css/static.scss',
'./public/styleguide/css/styleguide.css': './public/styleguide/css/styleguide.scss'
'./public/styleguide/css/styleguide.css': './public/styleguide/css/styleguide.scss',
'./public/styleguide/css/styleguide-specific.css': './public/styleguide/css/styleguide-specific.scss'
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Pattern states should be lowercase and use hyphens where spaces are present.
`config.json` also has two properties that work together to export completed patterns for use in a production environment. Provide an array of keys and an output directory. Pattern Lab doesn't ship with any pattern export keys, but the default directory is `"./pattern_exports/"` created inside the install directory.

```
"patternExportKeys": ["molecules-primary-nav","organisms-header", ""organisms-header""],
"patternExportKeys": ["molecules-primary-nav", "organisms-header", "organisms-header"],
"patternExportDirectory": "./pattern_exports/"
```

Expand Down

0 comments on commit 2e8183a

Please sign in to comment.