@tailwindcss/vite 0.0.0-development.1 → 0.0.0-development.2

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/dist/index.mjs +2 -2
  2. package/package.json +3 -3
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  // src/index.ts
2
- import { IO, Parsing, parseCandidateStrings } from "@tailwindcss/oxide";
2
+ import { IO, Parsing, scanFiles } from "@tailwindcss/oxide";
3
3
  import path from "path";
4
4
  import { compile, optimizeCss, preflight } from "tailwindcss";
5
5
  function tailwindcss() {
@@ -29,7 +29,7 @@ function tailwindcss() {
29
29
  }
30
30
  }
31
31
  function scan(src, extension) {
32
- for (let candidate of parseCandidateStrings(
32
+ for (let candidate of scanFiles(
33
33
  [{ content: src, extension }],
34
34
  IO.Sequential | Parsing.Sequential
35
35
  )) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tailwindcss/vite",
3
- "version": "0.0.0-development.1",
3
+ "version": "0.0.0-development.2",
4
4
  "scripts": {
5
5
  "build": "tsup-node ./src/index.ts --format esm --dts",
6
6
  "dev": "npm run build -- --watch"
@@ -15,7 +15,7 @@
15
15
  }
16
16
  },
17
17
  "dependencies": {
18
- "tailwindcss": "0.0.0-development.1",
19
- "@tailwindcss/oxide": "0.0.0-development.1"
18
+ "tailwindcss": "0.0.0-development.2",
19
+ "@tailwindcss/oxide": "0.0.0-development.2"
20
20
  }
21
21
  }