Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 3e10a3c

Browse files
authored
Merge pull request #127 from larvit/master
Updated dependencies, tweaked documentation and more
2 parents fcaf74a + 405982b commit 3e10a3c

File tree

4 files changed

+3352
-8
lines changed

4 files changed

+3352
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: node_js
2-
node_js: [6, 8, 10]
2+
node_js: [8, 10, 12]
33
script: npm run lint && npm test
44
deploy:
55
provider: npm

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ http.createServer(app).listen(3000);
102102
* `dest` - (String) Destination directory used to output `.css` files (when undefined defaults to `src`).
103103
* `error` - A function to be called when something goes wrong.
104104
* `force` - `[true | false]`, false by default. Always re-compile.
105-
* `indentedSyntax` - `[true | false]`, false by default. Compiles files with the `.sass` extension instead of `.scss` in the `src` directory.
105+
* `indentedSyntax` - `[true | false]`, false by default. If true compiles files with the `.sass` extension instead of `.scss` in the `src` directory.
106106
* `log` - `function(severity, key, val)`, used to log data instead of the default `console.error`
107107
* `maxAge` - MaxAge to be passed in Cache-Control header.
108108
* `prefix` - (String) It will tell the sass middleware that any request file will always be prefixed with `<prefix>` and this prefix should be ignored.
@@ -111,7 +111,7 @@ http.createServer(app).listen(3000);
111111

112112

113113
For full list of options from original node-sass project go [here](https://github.com/sass/node-sass).
114-
114+
115115
### Express example with custom log function
116116

117117
```javascript

0 commit comments

Comments
 (0)