@mesadev/sdk 0.4.0 → 0.4.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.
Files changed (1) hide show
  1. package/package.json +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mesadev/sdk",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "Official Mesa TypeScript SDK",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -26,15 +26,15 @@
26
26
  },
27
27
  "scripts": {
28
28
  "clean": "rm -rf dist tsconfig.build.tsbuildinfo",
29
- "build": "bun run clean && tsc -b tsconfig.build.json",
30
- "tsc:build": "bun run clean && tsc -b tsconfig.build.json --emitDeclarationOnly",
31
- "typecheck": "tsc -b tsconfig.build.json",
29
+ "build": "bun run clean && bun run --cwd ../rest/ts build && tsc -b tsconfig.build.json",
30
+ "tsc:build": "bun run --cwd ../rest/ts build && bun run clean && tsc -b tsconfig.build.json --emitDeclarationOnly",
31
+ "typecheck": "bun run --cwd ../rest/ts build && tsc -b tsconfig.build.json",
32
32
  "lint": "biome check --write src test jest.config.mjs package.json README.md",
33
33
  "test": "NODE_OPTIONS='--experimental-vm-modules' jest",
34
34
  "prepack": "bun run build"
35
35
  },
36
36
  "dependencies": {
37
- "@mesadev/rest": "workspace:*",
37
+ "@mesadev/rest": "0.4.1",
38
38
  "isomorphic-git": "^1.37.2",
39
39
  "just-bash": "^2.13.0"
40
40
  },