@stevederico/skateboard-ui 1.0.7 → 1.0.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/CHANGELOG.md +9 -0
- package/Utilities.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/Utilities.js
CHANGED
|
@@ -797,8 +797,6 @@ export async function getSkateboardViteConfig(customConfig = {}) {
|
|
|
797
797
|
'react-dom',
|
|
798
798
|
'react-dom/client',
|
|
799
799
|
'@radix-ui/react-slot',
|
|
800
|
-
'cookie',
|
|
801
|
-
'set-cookie-parser',
|
|
802
800
|
...(customConfig.optimizeDeps?.include || [])
|
|
803
801
|
],
|
|
804
802
|
exclude: [
|
|
@@ -809,6 +807,8 @@ export async function getSkateboardViteConfig(customConfig = {}) {
|
|
|
809
807
|
'@tailwindcss/oxide-darwin-arm64',
|
|
810
808
|
'lightningcss',
|
|
811
809
|
'fsevents',
|
|
810
|
+
'cookie',
|
|
811
|
+
'set-cookie-parser',
|
|
812
812
|
...(customConfig.optimizeDeps?.exclude || [])
|
|
813
813
|
],
|
|
814
814
|
esbuildOptions: {
|