modelfusion 0.136.0 → 0.137.0

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,7 +1,7 @@
1
1
  {
2
2
  "name": "modelfusion",
3
3
  "description": "The TypeScript library for building AI applications.",
4
- "version": "0.136.0",
4
+ "version": "0.137.0",
5
5
  "author": "Lars Grammel",
6
6
  "license": "MIT",
7
7
  "keywords": [
@@ -60,8 +60,10 @@
60
60
  "lint": "eslint --ext .ts src",
61
61
  "clean": "rimraf build dist .turbo node_modules",
62
62
  "clean:build": "rimraf build dist",
63
- "build": "tsup && pnpm build:copy-files",
64
- "build:copy-files": "copyfiles --flat package.json ./README.md ../../LICENSE ./CHANGELOG.md dist",
63
+ "build": "tsup --dts && pnpm build:copy-files",
64
+ "build:copy-files": "copyfiles --flat package.json ../../README.md ../../LICENSE ../../CHANGELOG.md dist",
65
+ "build:dtsMap": "tsc --emitDeclarationOnly --declaration --declarationMap",
66
+ "dev": "tsup --watch src --onSuccess \"pnpm build:dtsMap\"",
65
67
  "test": "vitest --config vitest.config.js --run src",
66
68
  "test:watch": "vitest watch --config vitest.config.js",
67
69
  "test:coverage": "vitest run --config vitest.config.js --coverage",