forked from sass/node-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.js
131 lines (109 loc) · 3.08 KB
/
cli.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
var watch = require('node-watch'),
render = require('./render'),
path = require('path'),
Emitter = require('events').EventEmitter,
cwd = process.cwd();
var optimist = require('optimist')
.usage('Compile .scss files with node-sass.\nUsage: $0 [options] <input.scss> [<output.css>]')
.options('output-style', {
describe: 'CSS output style (nested|expanded|compact|compressed)',
'default': 'nested'
})
.options('source-comments', {
describe: 'Include debug info in output (none|normal|map)',
'default': 'none'
})
.options('include-path', {
describe: 'Path to look for @import-ed files',
'default': cwd
})
.options('watch', {
describe: 'Watch a directory or file',
alias: 'w'
})
.options('output', {
describe: 'Output css file',
alias: 'o'
})
.options('stdout', {
describe: 'Print the resulting CSS to stdout'
})
.options('help', {
describe: 'Print usage info',
type: 'string',
alias: 'help'
})
.check(function(argv){
if (argv.help) { return true; }
if (argv._.length < 1) { return false; }
});
// throttle function, used so when multiple files change at the same time
// (e.g. git pull) the files are only compiled once.
function throttle(fn) {
var timer;
var args = Array.prototype.slice.call(arguments, 1);
return function() {
var self = this;
clearTimeout(timer);
timer = setTimeout(function() {
fn.apply(self, args);
}, 20);
};
}
function isSassFile(file) {
return file.match(/\.(sass|scss)/);
}
exports = module.exports = function(args) {
var argv = optimist.parse(args);
if (argv.help) {
optimist.showHelp();
process.exit(0);
return;
}
var emitter = new Emitter();
emitter.on('error', function(){});
var options = {
stdout: argv.stdout
};
var inFile = options.inFile = argv._[0];
var outFile = options.outFile = argv.o || argv._[1];
if (!outFile) {
outFile = options.outFile = path.join(cwd, path.basename(inFile, '.scss') + '.css');
}
// make sure it's an array.
options.includePaths = argv['include-path'];
if (!Array.isArray(options.includePaths)) {
options.includePaths = [options.includePaths];
}
// if it's an array, make it a string
options.outputStyle = argv['output-style'];
if (Array.isArray(options.outputStyle)) {
options.outputStyle = options.outputStyle[0];
}
// if it's an array, make it a string
options.sourceComments = argv['source-comments'];
if (Array.isArray(options.sourceComments)) {
options.sourceComments = options.sourceComments[0];
}
if (argv.w) {
var watchDir = argv.w;
if (watchDir === true) {
watchDir = [];
} else if (!Array.isArray(watchDir)) {
watchDir = [watchDir];
}
watchDir.push(inFile);
var throttledRender = throttle(render, options, emitter);
watch(watchDir, function(file){
emitter.emit('warn', '=> changed: '.grey + file.blue);
if (isSassFile(file)) {
throttledRender();
}
});
throttledRender();
} else {
render(options, emitter);
}
return emitter;
};
exports.optimist = optimist;