@stevederico/skateboard-ui 1.2.2 → 1.2.3
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/CHANGELOG.md +5 -0
- package/ViteConfig.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/ViteConfig.js
CHANGED
|
@@ -235,6 +235,8 @@ export async function getSkateboardViteConfig(customConfig = {}) {
|
|
|
235
235
|
'react-dom',
|
|
236
236
|
'react-dom/client',
|
|
237
237
|
'@radix-ui/react-slot',
|
|
238
|
+
'cookie',
|
|
239
|
+
'set-cookie-parser',
|
|
238
240
|
...(customConfig.optimizeDeps?.include || [])
|
|
239
241
|
],
|
|
240
242
|
exclude: [
|
|
@@ -243,8 +245,6 @@ export async function getSkateboardViteConfig(customConfig = {}) {
|
|
|
243
245
|
'@swc/wasm',
|
|
244
246
|
'lightningcss',
|
|
245
247
|
'fsevents',
|
|
246
|
-
'cookie',
|
|
247
|
-
'set-cookie-parser',
|
|
248
248
|
...(customConfig.optimizeDeps?.exclude || [])
|
|
249
249
|
],
|
|
250
250
|
esbuildOptions: {
|