takumi-js 2.8.0 → 2.9.0
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/bundlers/wasm-url.cjs +1 -0
- package/bundlers/wasm-url.d.cts +3 -0
- package/bundlers/wasm-url.d.ts +3 -0
- package/bundlers/wasm-url.mjs +1 -0
- package/dist/wasm/no-init.cjs +18 -0
- package/dist/wasm/no-init.d.cts +3 -0
- package/dist/wasm/no-init.d.mts +3 -0
- package/dist/wasm/no-init.mjs +3 -0
- package/package.json +26 -5
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("@takumi-rs/wasm/wasm-url");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "@takumi-rs/wasm/wasm-url";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_rolldown_runtime = require("../rolldown-runtime-DakpK96I.cjs");
|
|
3
|
+
let _takumi_rs_wasm = require("@takumi-rs/wasm");
|
|
4
|
+
_takumi_rs_wasm = require_rolldown_runtime.__toESM(_takumi_rs_wasm, 1);
|
|
5
|
+
Object.defineProperty(exports, "init", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _takumi_rs_wasm.default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
Object.keys(_takumi_rs_wasm).forEach(function(k) {
|
|
12
|
+
if (k !== "default" && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function() {
|
|
15
|
+
return _takumi_rs_wasm[k];
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "takumi-js",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"description": "Render OG images from JSX, HTML, and CSS. No headless browser.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"animated-webp",
|
|
@@ -33,7 +33,8 @@
|
|
|
33
33
|
"directory": "takumi-js"
|
|
34
34
|
},
|
|
35
35
|
"files": [
|
|
36
|
-
"dist"
|
|
36
|
+
"dist",
|
|
37
|
+
"bundlers"
|
|
37
38
|
],
|
|
38
39
|
"type": "module",
|
|
39
40
|
"sideEffects": false,
|
|
@@ -165,6 +166,26 @@
|
|
|
165
166
|
"default": "./dist/wasm.cjs"
|
|
166
167
|
}
|
|
167
168
|
},
|
|
169
|
+
"./wasm/no-init": {
|
|
170
|
+
"import": {
|
|
171
|
+
"types": "./dist/wasm/no-init.d.mts",
|
|
172
|
+
"default": "./dist/wasm/no-init.mjs"
|
|
173
|
+
},
|
|
174
|
+
"require": {
|
|
175
|
+
"types": "./dist/wasm/no-init.d.cts",
|
|
176
|
+
"default": "./dist/wasm/no-init.cjs"
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
"./wasm-url": {
|
|
180
|
+
"import": {
|
|
181
|
+
"types": "./bundlers/wasm-url.d.ts",
|
|
182
|
+
"default": "./bundlers/wasm-url.mjs"
|
|
183
|
+
},
|
|
184
|
+
"require": {
|
|
185
|
+
"types": "./bundlers/wasm-url.d.cts",
|
|
186
|
+
"default": "./bundlers/wasm-url.cjs"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
168
189
|
"./helpers": {
|
|
169
190
|
"import": {
|
|
170
191
|
"types": "./dist/helpers/index.d.mts",
|
|
@@ -217,9 +238,9 @@
|
|
|
217
238
|
"publish-lint": "attw --pack . && publint --strict ."
|
|
218
239
|
},
|
|
219
240
|
"dependencies": {
|
|
220
|
-
"@takumi-rs/core": "2.
|
|
221
|
-
"@takumi-rs/helpers": "2.
|
|
222
|
-
"@takumi-rs/wasm": "2.
|
|
241
|
+
"@takumi-rs/core": "2.9.0",
|
|
242
|
+
"@takumi-rs/helpers": "2.9.0",
|
|
243
|
+
"@takumi-rs/wasm": "2.9.0"
|
|
223
244
|
},
|
|
224
245
|
"devDependencies": {
|
|
225
246
|
"@types/bun": "^1.3.14",
|