@mastra/playground-ui 43.0.0-alpha.2 → 43.0.0-alpha.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +9 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 43.0.0-alpha.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`75f843d`](https://github.com/mastra-ai/mastra/commit/75f843d09f758223e6eeb321321bdcc5c7e779d0)]:
8
+ - @mastra/core@1.53.0-alpha.2
9
+ - @mastra/client-js@1.34.0-alpha.3
10
+ - @mastra/react@1.3.2-alpha.3
11
+
3
12
  ## 43.0.0-alpha.2
4
13
 
5
14
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mastra/playground-ui",
3
3
  "type": "module",
4
- "version": "43.0.0-alpha.2",
4
+ "version": "43.0.0-alpha.3",
5
5
  "description": "Mastra Playground components",
6
6
  "sideEffects": [
7
7
  "**/*.css"
@@ -150,8 +150,8 @@
150
150
  "react": ">=19.0.0",
151
151
  "react-dom": ">=19.0.0",
152
152
  "tailwindcss": "^4.0.0",
153
- "@mastra/client-js": "^1.34.0-alpha.2",
154
- "@mastra/react": "1.3.2-alpha.2"
153
+ "@mastra/client-js": "^1.34.0-alpha.3",
154
+ "@mastra/react": "1.3.2-alpha.3"
155
155
  },
156
156
  "devDependencies": {
157
157
  "@storybook/addon-a11y": "^10.4.1",
@@ -189,11 +189,11 @@
189
189
  "vite-plugin-dts": "^4.5.4",
190
190
  "vite-plugin-lib-inject-css": "^2.2.2",
191
191
  "vitest": "4.1.10",
192
- "@internal/lint": "0.0.116",
192
+ "@mastra/client-js": "^1.34.0-alpha.3",
193
193
  "@mastra/memory": "1.23.1",
194
- "@mastra/client-js": "^1.34.0-alpha.2",
195
- "@mastra/core": "1.53.0-alpha.1",
196
- "@mastra/react": "1.3.2-alpha.2"
194
+ "@mastra/core": "1.53.0-alpha.2",
195
+ "@internal/lint": "0.0.116",
196
+ "@mastra/react": "1.3.2-alpha.3"
197
197
  },
198
198
  "homepage": "https://mastra.ai",
199
199
  "repository": {
@@ -212,7 +212,8 @@
212
212
  "dev": "vite build --watch",
213
213
  "test": "vitest",
214
214
  "typecheck": "tsc",
215
- "lint": "eslint .",
215
+ "lint": "oxlint . && eslint .",
216
+ "lint:fix": "oxlint --fix . && eslint --fix .",
216
217
  "build:publish": "pnpm build && yalc push",
217
218
  "preview": "vite preview",
218
219
  "storybook": "storybook dev -p 6006 --no-open",