boss-css 0.0.9 → 0.0.10

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.
@@ -74,7 +74,7 @@ const runPostcss = async (root, result, options = {}) => {
74
74
  knownFiles.set(queueKey, nextFiles);
75
75
  const promises = [];
76
76
  resolvedPaths.forEach((file) => {
77
- if (require_cache.setCache(file, { isFile: true })) messages.push({
77
+ if (!require_cache.cache.has(file)) messages.push({
78
78
  type: "dependency",
79
79
  file
80
80
  });
@@ -71,7 +71,7 @@ const runPostcss = async (root, result, options = {}) => {
71
71
  knownFiles.set(queueKey, nextFiles);
72
72
  const promises = [];
73
73
  resolvedPaths.forEach((file) => {
74
- if (setCache(file, { isFile: true })) messages.push({
74
+ if (!cache.has(file)) messages.push({
75
75
  type: "dependency",
76
76
  file
77
77
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "boss-css",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "",
5
5
  "bin": {
6
6
  "boss": "./dist/cli/index.cjs",
@@ -300,7 +300,8 @@
300
300
  "source-map-js": "^1.2.1",
301
301
  "ts-deepmerge": "^7.0.3",
302
302
  "ws": "^8.19.0",
303
- "yargs": "^18.0.0"
303
+ "yargs": "^18.0.0",
304
+ "boss-css": "0.0.6"
304
305
  },
305
306
  "peerDependencies": {
306
307
  "react": "^19.2.3",
@@ -308,7 +309,7 @@
308
309
  "react-native": ">=0.83.1"
309
310
  },
310
311
  "bo$$": {
311
- "configDir": "src/.bo$$",
312
+ "configDir": "src/.bo51761",
312
313
  "compile": {
313
314
  "tempOutDir": "src/.bo$$/compiled"
314
315
  }