@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 CHANGED
@@ -1,4 +1,13 @@
1
1
  # CHANGELOG
2
+ 1.0.9
3
+
4
+ Add cookie exclusions
5
+ Exclude set-cookie-parser
6
+
7
+ 1.0.8
8
+
9
+ Remove cookie dependencies
10
+
2
11
  1.0.7
3
12
 
4
13
  Refactor wrapper implementation
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: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stevederico/skateboard-ui",
3
3
  "private": false,
4
- "version": "1.0.7",
4
+ "version": "1.0.9",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  "./AppSidebar": {