@rebuildjs/tailwindcss 0.9.12 → 0.9.15
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/package.json +4 -4
- package/rebuild_tailwind_plugin/index.js +13 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rebuildjs/tailwindcss",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.15",
|
|
4
4
|
"description": "Tailwindcss integration with rebuildjs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tailwindcss",
|
|
@@ -39,17 +39,17 @@
|
|
|
39
39
|
"./package.json": "./package.json"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"ctx-core": "^
|
|
42
|
+
"ctx-core": "^7.0.0",
|
|
43
43
|
"esbuild": "^0.20.2",
|
|
44
44
|
"postcss": "^8.4.38",
|
|
45
|
-
"rebuildjs": "^0.
|
|
45
|
+
"rebuildjs": "^0.68.1",
|
|
46
46
|
"tailwindcss": "^3.4.3"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"c8": "^9.1.0",
|
|
50
50
|
"check-dts": "^0.7.2",
|
|
51
51
|
"esmock": "^2.6.4",
|
|
52
|
-
"relementjs": "^0.
|
|
52
|
+
"relementjs": "^0.78.2",
|
|
53
53
|
"tsx": "^4.7.1",
|
|
54
54
|
"typescript": "next",
|
|
55
55
|
"uvu": "^0.5.6"
|
|
@@ -2,9 +2,9 @@ import { file_exists_, file_exists__waitfor } from 'ctx-core/fs'
|
|
|
2
2
|
import {
|
|
3
3
|
be,
|
|
4
4
|
be_memo_pair_,
|
|
5
|
-
be_sig_triple_,
|
|
6
5
|
Cancel,
|
|
7
|
-
memo_,
|
|
6
|
+
memo_, ns_id_be_memo_pair_,
|
|
7
|
+
ns_id_be_sig_triple_,
|
|
8
8
|
nullish__none_,
|
|
9
9
|
promise__cancel__throw,
|
|
10
10
|
rmemo__wait,
|
|
@@ -39,18 +39,21 @@ export const [
|
|
|
39
39
|
rebuild_tailwind_plugin__build_id$_,
|
|
40
40
|
rebuild_tailwind_plugin__build_id_,
|
|
41
41
|
rebuild_tailwind_plugin__build_id__set,
|
|
42
|
-
] =
|
|
43
|
-
|
|
44
|
-
|
|
42
|
+
] = ns_id_be_sig_triple_(
|
|
43
|
+
'app',
|
|
44
|
+
'rebuild_tailwind_plugin__build_id',
|
|
45
|
+
()=>undefined)
|
|
45
46
|
export const [
|
|
46
47
|
rebuildjs_tailwind__ready$_,
|
|
47
48
|
rebuildjs_tailwind__ready_,
|
|
48
|
-
] =
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
] = ns_id_be_memo_pair_(
|
|
50
|
+
'app',
|
|
51
|
+
'rebuildjs_tailwind__ready',
|
|
52
|
+
ctx=>
|
|
53
|
+
!!(
|
|
54
|
+
build_id_(ctx)
|
|
51
55
|
&& rebuildjs__esbuild__done_(ctx)
|
|
52
|
-
&& build_id_(ctx) === rebuild_tailwind_plugin__build_id_(ctx))
|
|
53
|
-
{ id: 'rebuildjs_tailwind__ready', ns: 'app' })
|
|
56
|
+
&& build_id_(ctx) === rebuild_tailwind_plugin__build_id_(ctx)))
|
|
54
57
|
export function rebuildjs_tailwind__ready__wait(timeout) {
|
|
55
58
|
return rmemo__wait(
|
|
56
59
|
rebuildjs_tailwind__ready$_(app_ctx),
|