@viamrobotics/motion-tools 1.12.0 → 1.12.2

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": "@viamrobotics/motion-tools",
3
- "version": "1.12.0",
3
+ "version": "1.12.2",
4
4
  "description": "Motion visualization with Viam",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -48,6 +48,7 @@
48
48
  "@zag-js/toggle-group": "1.22.1",
49
49
  "@zag-js/tree-view": "1.22.1",
50
50
  "camera-controls": "3.1.0",
51
+ "esbuild": "^0.27.3",
51
52
  "eslint": "9.34.0",
52
53
  "eslint-config-prettier": "10.1.8",
53
54
  "eslint-plugin-svelte": "3.12.1",
@@ -143,9 +144,10 @@
143
144
  "scripts": {
144
145
  "dev": "tsx server/check-bun && bun run server/server.ts",
145
146
  "build": "vite build && npm run prepack",
147
+ "build:workers": "node scripts/build-workers.js",
146
148
  "preview": "vite preview",
147
- "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
148
- "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
149
+ "check": "svelte-kit sync && pnpm run build:workers && svelte-check --tsconfig ./tsconfig.json",
150
+ "check:watch": "svelte-kit sync && pnpm run build:workers && svelte-check --tsconfig ./tsconfig.json --watch",
149
151
  "format": "prettier --write .",
150
152
  "lint": "prettier --check . && eslint .",
151
153
  "knip": "npx knip --include files,exports,types",