Skip to content

Commit

Permalink
Merge pull request #19 from nathggns/version-0.2.2
Browse files Browse the repository at this point in the history
Version 0.2.2
  • Loading branch information
nathggns committed Jun 26, 2013
2 parents 4ba3b7a + 18b3773 commit ca9a7ee
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 8 deletions.
12 changes: 12 additions & 0 deletions Changelog.md
@@ -0,0 +1,12 @@
# Changelog

## Version 0.2.2

- Fix fatal bug introduced in `v0.2.1` (419161224f86e6a6c7e1818b71f880286b6da708) (@AndrewHathaway)
- Update README.md for new config options introduced in `v0.2.1` (fbe36b66d36580ce45940816a13895e69151be2c) (@nathggns)

## Version 0.2.1

- Fix bug where compass shell may fail. (6927e9b221a14e128fbb0810825e3e88ac725ea9) (@jaredmcateer)
- Improve logging output and add ability to toggle. (ba4571b26b48cddbddb2e18b0a16d7743b987bdb) (@jaredmcateer)
- Add ability to use a config_file for your options, and add extra options. (6998c7b663673a6cba1b9723a5736d011fab5f58)
10 changes: 10 additions & 0 deletions README.md
Expand Up @@ -30,6 +30,10 @@ app.configure(function() {
});
```

## Changelog

[**View Changelog**](Changelog.md)

## Configuration

`node-compass` is highly configurable.
Expand Down Expand Up @@ -97,3 +101,9 @@ Can be expanded, nested, compressed or compact.
**default:** false

**description:** Enable/disables logging to terminal when attempting to compile sass files.

#### config_file

**default:** false

**description:** Use this config option to point to a valid compass `config.rb` file, if you would prefer to use that for your config instead.
16 changes: 9 additions & 7 deletions index.js
Expand Up @@ -189,14 +189,16 @@ module.exports = exports = function(opts) {
options.push('-r', lib);
});
}
var compass = spawn(
'compass',
options,
{
cwd: opts.project
}
);
}

var compass = spawn(
'compass',
options,
{
cwd: opts.project
}
);

if (opts.logging) {
compass.stdout.setEncoding('utf8');
compass.stdout.on('data', function (data) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "node-compass",
"version": "0.2.1",
"version": "0.2.2",
"description": "compass middleware",
"homepage": "https://github.com/nathggns/node-compass",
"author": {
Expand Down

0 comments on commit ca9a7ee

Please sign in to comment.