modif comtabilite

This commit is contained in:
2019-01-16 16:23:31 +01:00
parent 6b741a9666
commit 9312edc3ae
1844 changed files with 158848 additions and 55874 deletions
+1 -1
View File
@@ -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
View File
@@ -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
View File
@@ -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();
});