@tailwindcss/oxide-wasm32-wasi 4.1.16 → 4.1.18
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/node_modules/@emnapi/core/dist/emnapi-core.cjs.js +142 -48
- package/node_modules/@emnapi/core/dist/emnapi-core.cjs.min.js +1 -1
- package/node_modules/@emnapi/core/dist/emnapi-core.esm-bundler.js +153 -47
- package/node_modules/@emnapi/core/dist/emnapi-core.js +158 -52
- package/node_modules/@emnapi/core/dist/emnapi-core.min.js +1 -1
- package/node_modules/@emnapi/core/dist/emnapi-core.min.mjs +1 -1
- package/node_modules/@emnapi/core/dist/emnapi-core.mjs +142 -48
- package/node_modules/@emnapi/core/package.json +1 -1
- package/node_modules/@emnapi/runtime/dist/emnapi.cjs.js +1 -1
- package/node_modules/@emnapi/runtime/dist/emnapi.cjs.min.js +1 -1
- package/node_modules/@emnapi/runtime/dist/emnapi.esm-bundler.js +1 -1
- package/node_modules/@emnapi/runtime/dist/emnapi.iife.js +1 -1
- package/node_modules/@emnapi/runtime/dist/emnapi.js +1 -1
- package/node_modules/@emnapi/runtime/dist/emnapi.min.js +1 -1
- package/node_modules/@emnapi/runtime/dist/emnapi.min.mjs +1 -1
- package/node_modules/@emnapi/runtime/dist/emnapi.mjs +1 -1
- package/node_modules/@emnapi/runtime/package.json +1 -1
- package/node_modules/@napi-rs/wasm-runtime/dist/fs.js +310 -170
- package/node_modules/@napi-rs/wasm-runtime/package.json +10 -10
- package/package.json +4 -4
- package/tailwindcss-oxide.wasm32-wasi.wasm +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@napi-rs/wasm-runtime",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Runtime and polyfill for wasm targets",
|
|
6
6
|
"author": {
|
|
@@ -25,26 +25,26 @@
|
|
|
25
25
|
"dist/*.js"
|
|
26
26
|
],
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@rollup/plugin-alias": "^
|
|
29
|
-
"@rollup/plugin-commonjs": "^
|
|
28
|
+
"@rollup/plugin-alias": "^6.0.0",
|
|
29
|
+
"@rollup/plugin-commonjs": "^29.0.0",
|
|
30
30
|
"@rollup/plugin-inject": "^5.0.5",
|
|
31
31
|
"@rollup/plugin-json": "^6.1.0",
|
|
32
|
-
"@rollup/plugin-node-resolve": "^16.0.
|
|
33
|
-
"@rollup/plugin-replace": "^6.0.
|
|
32
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
33
|
+
"@rollup/plugin-replace": "^6.0.3",
|
|
34
34
|
"buffer": "^6.0.3",
|
|
35
35
|
"events": "^3.3.0",
|
|
36
|
-
"memfs": "^4.
|
|
37
|
-
"node-inspect-extracted": "^3.2.
|
|
36
|
+
"memfs": "^4.50.0",
|
|
37
|
+
"node-inspect-extracted": "^3.2.2",
|
|
38
38
|
"path-browserify": "^1.0.1",
|
|
39
39
|
"process": "^0.11.10",
|
|
40
40
|
"readable-stream": "^4.7.0",
|
|
41
|
-
"rollup": "^4.
|
|
41
|
+
"rollup": "^4.53.1",
|
|
42
42
|
"rollup-plugin-polyfill-node": "^0.13.0",
|
|
43
43
|
"tslib": "^2.8.1"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@emnapi/core": "^1.
|
|
47
|
-
"@emnapi/runtime": "^1.
|
|
46
|
+
"@emnapi/core": "^1.7.1",
|
|
47
|
+
"@emnapi/runtime": "^1.7.1",
|
|
48
48
|
"@tybys/wasm-util": "^0.10.1"
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tailwindcss/oxide-wasm32-wasi",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.18",
|
|
4
4
|
"cpu": [
|
|
5
5
|
"wasm32"
|
|
6
6
|
],
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
},
|
|
28
28
|
"browser": "tailwindcss-oxide.wasi-browser.js",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@napi-rs/wasm-runtime": "^1.0
|
|
31
|
-
"@emnapi/core": "^1.
|
|
32
|
-
"@emnapi/runtime": "^1.
|
|
30
|
+
"@napi-rs/wasm-runtime": "^1.1.0",
|
|
31
|
+
"@emnapi/core": "^1.7.1",
|
|
32
|
+
"@emnapi/runtime": "^1.7.1",
|
|
33
33
|
"@tybys/wasm-util": "^0.10.1",
|
|
34
34
|
"@emnapi/wasi-threads": "^1.1.0",
|
|
35
35
|
"tslib": "^2.4.0"
|
|
Binary file
|