@unocss/postcss 0.51.2 → 0.51.3

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/dist/index.cjs CHANGED
@@ -237,9 +237,8 @@ function unocss(options = {}) {
237
237
  const rawContent = content?.filter((v) => typeof v === "object") ?? [];
238
238
  const entries = await fg__default(isScanTarget ? globs : from, {
239
239
  cwd,
240
- dot: true,
241
240
  absolute: true,
242
- ignore: ["**/{.git,node_modules}/**"],
241
+ ignore: ["**/node_modules/**"],
243
242
  stats: true
244
243
  });
245
244
  await parseApply(root, uno, directiveMap.apply);
package/dist/index.mjs CHANGED
@@ -229,9 +229,8 @@ function unocss(options = {}) {
229
229
  const rawContent = content?.filter((v) => typeof v === "object") ?? [];
230
230
  const entries = await fg(isScanTarget ? globs : from, {
231
231
  cwd,
232
- dot: true,
233
232
  absolute: true,
234
- ignore: ["**/{.git,node_modules}/**"],
233
+ ignore: ["**/node_modules/**"],
235
234
  stats: true
236
235
  });
237
236
  await parseApply(root, uno, directiveMap.apply);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unocss/postcss",
3
- "version": "0.51.2",
3
+ "version": "0.51.3",
4
4
  "description": "PostCSS plugin for UnoCSS",
5
5
  "author": "sibbng <sibbngheid@gmail.com>",
6
6
  "license": "MIT",
@@ -40,8 +40,8 @@
40
40
  "fast-glob": "^3.2.12",
41
41
  "magic-string": "^0.30.0",
42
42
  "postcss": "^8.4.21",
43
- "@unocss/config": "0.51.2",
44
- "@unocss/core": "0.51.2"
43
+ "@unocss/config": "0.51.3",
44
+ "@unocss/core": "0.51.3"
45
45
  },
46
46
  "scripts": {
47
47
  "build": "unbuild",