xatriumcss 1.0.15 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/cli.js +0 -9
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -164,15 +164,6 @@ function formatTime(nanoseconds) {
|
|
|
164
164
|
continue;
|
|
165
165
|
}
|
|
166
166
|
|
|
167
|
-
// Also ignore the entire output directory
|
|
168
|
-
if (normalizedPath.startsWith(path.dirname(normalizedOutput).toLowerCase())) {
|
|
169
|
-
const isOutputDir = path.dirname(normalizedPath) === path.dirname(normalizedOutput).toLowerCase();
|
|
170
|
-
if (isOutputDir) {
|
|
171
|
-
console.log('🚫 Ignoring output directory change');
|
|
172
|
-
continue;
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
|
|
176
167
|
const ext = path.extname(event.path);
|
|
177
168
|
const isInputFile = path.normalize(event.path).toLowerCase() === path.normalize(config.input).toLowerCase();
|
|
178
169
|
|