@fest-lib/lure 0.1.8 → 0.1.9
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.js +18773 -0
- package/dist/lure.js +1 -4
- package/package.json +4 -2
package/dist/lure.js
CHANGED
|
@@ -17225,10 +17225,7 @@ var t_ = async () => {
|
|
|
17225
17225
|
const n = await (self?.showOpenFilePicker ? new Promise((r) => r({
|
|
17226
17226
|
showOpenFilePicker: self?.showOpenFilePicker?.bind?.(window),
|
|
17227
17227
|
showSaveFilePicker: self?.showSaveFilePicker?.bind?.(window)
|
|
17228
|
-
})) : import(
|
|
17229
|
-
/* @vite-ignore */
|
|
17230
|
-
"../../../../../subsystem/fest/polyfill/showOpenFilePicker.mjs"
|
|
17231
|
-
));
|
|
17228
|
+
})) : import("./showOpenFilePicker-BDv4F3Em.js"));
|
|
17232
17229
|
if (window?.showSaveFilePicker) {
|
|
17233
17230
|
const r = await (await n?.showSaveFilePicker?.({ suggestedName: t })?.catch?.(console.warn.bind(console)))?.createWritable?.({ keepExistingData: !0 })?.catch?.(console.warn.bind(console));
|
|
17234
17231
|
await r?.write?.(e)?.catch?.(console.warn.bind(console)), await r?.close?.()?.catch?.(console.warn.bind(console));
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fest-lib/lure",
|
|
3
3
|
"description": "LURE reactive DOM framework (fest-lib)",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.9",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"sideEffects": true,
|
|
@@ -38,7 +38,9 @@
|
|
|
38
38
|
"import": "./dist/lure.js",
|
|
39
39
|
"default": "./dist/lure.js"
|
|
40
40
|
},
|
|
41
|
-
"./package.json": "./package.json"
|
|
41
|
+
"./package.json": "./package.json",
|
|
42
|
+
"./dist/index.js": "./dist/lure.js",
|
|
43
|
+
"./index.js": "./dist/lure.js"
|
|
42
44
|
},
|
|
43
45
|
"peerDependencies": {
|
|
44
46
|
"@fest-lib/core": ">=0.1.0",
|