saloe 0.0.9 → 0.0.11
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 +2 -1
- package/vite.config.js +2 -1
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "saloe",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "Tools for making web development easy and efficient",
|
|
5
|
+
"type": "module",
|
|
5
6
|
"scripts": {
|
|
6
7
|
"build": "vite build",
|
|
7
8
|
"deploy": "npm run build && npm publish --access public --loglevel verbose"
|
package/vite.config.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { defineConfig } from 'vite'
|
|
2
2
|
import { resolve } from 'path'
|
|
3
3
|
|
|
4
|
-
|
|
5
4
|
export default defineConfig({
|
|
6
5
|
build: {
|
|
7
6
|
minify: false,
|
|
@@ -30,6 +29,8 @@ export default defineConfig({
|
|
|
30
29
|
'@cloudflare/kv-asset-handler': 'getAssetFromKV',
|
|
31
30
|
'urlpattern-polyfill': 'URLPatternPolyfill',
|
|
32
31
|
},
|
|
32
|
+
// Ensure named exports are preserved in the output
|
|
33
|
+
format: 'es', // 'es' format supports named exports
|
|
33
34
|
},
|
|
34
35
|
},
|
|
35
36
|
},
|