You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.error('--plugin and --disable-plugin-rule may not be used at the same time');
95
+
process.exitCode=1;
96
+
return;
97
+
}
98
+
90
99
if(options.sourceMap){
91
100
sourceMapOptions.sourceMapInputFilename=input;
92
101
@@ -113,6 +122,7 @@ function render() {
113
122
varmapDir=path.dirname(mapFilename);
114
123
varoutputDir=path.dirname(output);// find the path from the map to the output file
115
124
125
+
// eslint-disable-next-line max-len
116
126
sourceMapOptions.sourceMapOutputFilename=path.join(path.relative(mapDir,outputDir),path.basename(output));// make the sourcemap filename point to the sourcemap relative to the css file output directory
@@ -444,7 +454,8 @@ function processPluginQueue() {
444
454
break;
445
455
446
456
case'no-js':
447
-
console.error('The "--no-js" argument is deprecated, as inline JavaScript '+'is disabled by default. Use "--js" to enable inline JavaScript (not recommended).');
457
+
// eslint-disable-next-line max-len
458
+
console.error('The "--no-js" argument is deprecated, as inline JavaScript is disabled by default. Use "--js" to enable inline JavaScript (not recommended).');
448
459
break;
449
460
450
461
case'include-path':
@@ -629,6 +640,10 @@ function processPluginQueue() {
0 commit comments