@tailwindcss/vite 0.0.0-development.1 → 0.0.0-development.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.mjs +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,
|
|
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
|
|
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.
|
|
3
|
+
"version": "0.0.0-development.3",
|
|
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.
|
|
19
|
-
"@tailwindcss/oxide": "0.0.0-development.
|
|
18
|
+
"tailwindcss": "0.0.0-development.3",
|
|
19
|
+
"@tailwindcss/oxide": "0.0.0-development.3"
|
|
20
20
|
}
|
|
21
21
|
}
|