udi-yac 0.2.0 → 0.2.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "udi-yac",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "React implementation of the Universal Discovery Interface (UDI) chat — natural-language querying and visualization of biomedical datasets. Publishable as a library (`UDIChat` component) or as a standalone SPA.",
5
5
  "keywords": [
6
6
  "udi",
@@ -99,8 +99,9 @@
99
99
  "vitest": "^2.1.8"
100
100
  },
101
101
  "scripts": {
102
- "dev": "vite",
103
- "build": "tsc -b && vite build",
102
+ "sync-data": "node ../../scripts/copy-sample-data.mjs public/data",
103
+ "dev": "pnpm run sync-data && vite",
104
+ "build": "pnpm run sync-data && tsc -b && vite build",
104
105
  "build:lib": "tsc -b && vite build --mode lib",
105
106
  "typecheck": "tsc -b --noEmit",
106
107
  "lint": "eslint .",