-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
37 lines (30 loc) · 1.06 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const _ = require('underscore');
const npath = require('npath');
const sass = require('node-sass');
const DEFAULTS = {
includePaths: [],
indentedSyntax: false
};
const getRelative = path => npath.relative('.', path);
module.exports = ({file: {buffer, links, path}, options}) =>
new Promise((resolve, reject) => {
// Merge default options with user-defined options.
options = _.extend({}, DEFAULTS, options);
sass.render(_.extend(options, {
// node-sass chokes on empty strings, so provide at least a single space.
data: `${buffer.toString()} `,
// Always concat the file path so relative @imports work correctly.
includePaths: options.includePaths.concat(npath.dirname(path))
}), function (er, res) {
if (er) {
return reject(_.extend(new Error(), er, {
message:
`${path}: line ${er.line}, column ${er.column}, ${er.message}`
}));
}
resolve({
buffer: new Buffer(res.css),
links: links.concat(_.map(res.stats.includedFiles, getRelative))
});
});
});