modif comtabilite
This commit is contained in:
+1
-1
@@ -25,7 +25,7 @@ function foundBinariesList() {
|
||||
function missingBinaryFooter() {
|
||||
return [
|
||||
'This usually happens because your environment has changed since running `npm install`.',
|
||||
'Run `npm rebuild node-sass --force` to build the binding for your current environment.',
|
||||
'Run `npm rebuild node-sass` to download the binding for your current environment.',
|
||||
].join('\n');
|
||||
}
|
||||
|
||||
|
||||
+2
-1
@@ -75,7 +75,8 @@ function getHumanNodeVersion(abi) {
|
||||
case 53: return 'Electron 1.6.x';
|
||||
case 57: return 'Node.js 8.x';
|
||||
case 59: return 'Node.js 9.x';
|
||||
case 63: return 'Node.js 10.x';
|
||||
case 64: return 'Node.js 10.x';
|
||||
case 67: return 'Node.js 11.x';
|
||||
default: return false;
|
||||
}
|
||||
}
|
||||
|
||||
+3
-3
@@ -64,7 +64,7 @@ module.exports = function(options, emitter) {
|
||||
return done();
|
||||
}
|
||||
|
||||
emitter.emit('warn', chalk.green('Rendering Complete, saving .css file...'));
|
||||
emitter.emit('info', chalk.green('Rendering Complete, saving .css file...'));
|
||||
|
||||
mkdirp(path.dirname(destination), function(err) {
|
||||
if (err) {
|
||||
@@ -76,7 +76,7 @@ module.exports = function(options, emitter) {
|
||||
return emitter.emit('error', chalk.red(err));
|
||||
}
|
||||
|
||||
emitter.emit('warn', chalk.green('Wrote CSS to ' + destination));
|
||||
emitter.emit('info', chalk.green('Wrote CSS to ' + destination));
|
||||
emitter.emit('write', err, destination, result.css.toString());
|
||||
done();
|
||||
});
|
||||
@@ -94,7 +94,7 @@ module.exports = function(options, emitter) {
|
||||
return emitter.emit('error', chalk.red('Error' + err));
|
||||
}
|
||||
|
||||
emitter.emit('warn', chalk.green('Wrote Source Map to ' + sourceMap));
|
||||
emitter.emit('info', chalk.green('Wrote Source Map to ' + sourceMap));
|
||||
emitter.emit('write-source-map', err, sourceMap, result.map);
|
||||
done();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user