@medusajs/ui 4.0.21-snapshot-20250828204656 → 4.0.22-snapshot-20250829071156

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.
Files changed (1) hide show
  1. package/package.json +17 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medusajs/ui",
3
- "version": "4.0.21-snapshot-20250828204656",
3
+ "version": "4.0.22-snapshot-20250829071156",
4
4
  "author": "Kasper Kristensen <kasper@medusajs.com>",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -28,9 +28,22 @@
28
28
  "dist/**",
29
29
  "styles.css"
30
30
  ],
31
+ "scripts": {
32
+ "build": "yarn clean && yarn build:js:cjs && yarn build:js:esm",
33
+ "build:js:cjs": "tsc --project tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json",
34
+ "build:js:esm": "tsc --project tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
35
+ "clean": "rimraf dist",
36
+ "test": "vitest --run",
37
+ "test:watch": "vitest",
38
+ "test:coverage": "vitest --run --coverage",
39
+ "lint": "eslint \"**/*.ts*\"",
40
+ "storybook": "storybook dev -p 6006",
41
+ "storybook:build": "storybook build",
42
+ "typecheck": "tsc --noEmit"
43
+ },
31
44
  "devDependencies": {
32
45
  "@faker-js/faker": "^9.2.0",
33
- "@medusajs/ui-preset": "2.10.1-snapshot-20250828204656",
46
+ "@medusajs/ui-preset": "2.10.2-snapshot-20250829071156",
34
47
  "@storybook/addon-essentials": "^8.3.5",
35
48
  "@storybook/addon-interactions": "^8.3.5",
36
49
  "@storybook/addon-links": "^8.3.5",
@@ -68,7 +81,7 @@
68
81
  "vitest": "^3.0.5"
69
82
  },
70
83
  "dependencies": {
71
- "@medusajs/icons": "2.10.1-snapshot-20250828204656",
84
+ "@medusajs/icons": "2.10.2-snapshot-20250829071156",
72
85
  "@tanstack/react-table": "8.20.5",
73
86
  "clsx": "^1.2.1",
74
87
  "copy-to-clipboard": "^3.3.3",
@@ -98,18 +111,5 @@
98
111
  ],
99
112
  "publishConfig": {
100
113
  "access": "public"
101
- },
102
- "scripts": {
103
- "build": "yarn clean && yarn build:js:cjs && yarn build:js:esm",
104
- "build:js:cjs": "tsc --project tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json",
105
- "build:js:esm": "tsc --project tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
106
- "clean": "rimraf dist",
107
- "test": "vitest --run",
108
- "test:watch": "vitest",
109
- "test:coverage": "vitest --run --coverage",
110
- "lint": "eslint \"**/*.ts*\"",
111
- "storybook": "storybook dev -p 6006",
112
- "storybook:build": "storybook build",
113
- "typecheck": "tsc --noEmit"
114
114
  }
115
- }
115
+ }