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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.js +0 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xatriumcss",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "Ultra-fast utility-first CSS framework",
5
5
  "main": "./src/index.js",
6
6
  "files": [
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