@mastra/deployer 1.58.0-alpha.7 → 1.58.0-alpha.9

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 (46) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/dist/{analyze-D100622N.cjs → analyze-BIrkd7zx.cjs} +2 -2
  3. package/dist/{analyze-D100622N.cjs.map → analyze-BIrkd7zx.cjs.map} +1 -1
  4. package/dist/{analyze-7xxwhB5F.js → analyze-CNv6Qdaz.js} +2 -2
  5. package/dist/{analyze-7xxwhB5F.js.map → analyze-CNv6Qdaz.js.map} +1 -1
  6. package/dist/build/analyze.cjs +1 -1
  7. package/dist/build/analyze.js +1 -1
  8. package/dist/build/bundler.cjs +1 -1
  9. package/dist/build/bundler.d.ts +2 -1
  10. package/dist/build/bundler.d.ts.map +1 -1
  11. package/dist/build/bundler.js +1 -1
  12. package/dist/build/index.cjs +4 -4
  13. package/dist/build/index.js +4 -4
  14. package/dist/build/types.d.ts +5 -0
  15. package/dist/build/types.d.ts.map +1 -1
  16. package/dist/build/watcher.d.ts.map +1 -1
  17. package/dist/{build-YV8-9zZy.cjs → build-BERX35Pi.cjs} +5 -4
  18. package/dist/build-BERX35Pi.cjs.map +1 -0
  19. package/dist/{build-DEie1huB.js → build-kZfvpuh9.js} +5 -4
  20. package/dist/build-kZfvpuh9.js.map +1 -0
  21. package/dist/bundler/index.cjs +1 -1
  22. package/dist/bundler/index.d.ts +1 -1
  23. package/dist/bundler/index.d.ts.map +1 -1
  24. package/dist/bundler/index.js +1 -1
  25. package/dist/{bundler-M44kSNON.js → bundler-Ct1ToG6x.js} +7 -5
  26. package/dist/bundler-Ct1ToG6x.js.map +1 -0
  27. package/dist/{bundler-u9WOUtpl.cjs → bundler-DCGtF4jP.cjs} +7 -3
  28. package/dist/{bundler-u9WOUtpl.cjs.map → bundler-DCGtF4jP.cjs.map} +1 -1
  29. package/dist/{bundler-COBoQziJ.cjs → bundler-DLXwkS7b.cjs} +7 -5
  30. package/dist/bundler-DLXwkS7b.cjs.map +1 -0
  31. package/dist/{bundler-U9F2---r.js → bundler-gff4vn1T.js} +8 -4
  32. package/dist/bundler-gff4vn1T.js.map +1 -0
  33. package/dist/{bundlerOptions-CYRir4LE.cjs → bundlerOptions-CjjAPZYp.cjs} +2 -2
  34. package/dist/{bundlerOptions-CYRir4LE.cjs.map → bundlerOptions-CjjAPZYp.cjs.map} +1 -1
  35. package/dist/{bundlerOptions-9DigsVhY.js → bundlerOptions-NMtZPD7p.js} +2 -2
  36. package/dist/{bundlerOptions-9DigsVhY.js.map → bundlerOptions-NMtZPD7p.js.map} +1 -1
  37. package/dist/docs/SKILL.md +1 -1
  38. package/dist/docs/assets/SOURCE_MAP.json +1 -1
  39. package/dist/index.cjs +3 -3
  40. package/dist/index.js +3 -3
  41. package/package.json +6 -6
  42. package/dist/build-DEie1huB.js.map +0 -1
  43. package/dist/build-YV8-9zZy.cjs.map +0 -1
  44. package/dist/bundler-COBoQziJ.cjs.map +0 -1
  45. package/dist/bundler-M44kSNON.js.map +0 -1
  46. package/dist/bundler-U9F2---r.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @mastra/deployer
2
2
 
3
+ ## 1.58.0-alpha.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`86b7b77`](https://github.com/mastra-ai/mastra/commit/86b7b777980d30f66e1fd134a37d2af4c22e54cc), [`80a3324`](https://github.com/mastra-ai/mastra/commit/80a33245d3110204de6f56d61211523ffe338692), [`d9d2881`](https://github.com/mastra-ai/mastra/commit/d9d2881ede6dd6c023d144215fc812062aed0890), [`82e3365`](https://github.com/mastra-ai/mastra/commit/82e3365ef7c9bf7bee2e7a7029035ea262d68895), [`1b482c2`](https://github.com/mastra-ai/mastra/commit/1b482c2d89244dd758c41e5f927a2b44041388d2), [`e6a2860`](https://github.com/mastra-ai/mastra/commit/e6a2860649cc51f87d32d78b766ae2126446ba07), [`7bd85ea`](https://github.com/mastra-ai/mastra/commit/7bd85ea7588b71c25ce9f4019c88f8539be5dcbc)]:
8
+ - @mastra/core@1.58.0-alpha.9
9
+ - @mastra/server@1.58.0-alpha.9
10
+
11
+ ## 1.58.0-alpha.8
12
+
13
+ ### Patch Changes
14
+
15
+ - Add `bundler.minify` to minify `mastra build` output ([#21032](https://github.com/mastra-ai/mastra/pull/21032))
16
+
17
+ `mastra build` always emitted unminified code, which is larger than necessary when packaging for production — a container image or an on-prem deployment.
18
+
19
+ Set `bundler.minify: true` to minify the emitted bundle. Minification runs over whole chunks, so comments and whitespace are dropped and local identifiers are shortened while exported names are preserved.
20
+
21
+ ```typescript
22
+ export const mastra = new Mastra({
23
+ bundler: {
24
+ minify: true,
25
+ },
26
+ });
27
+ ```
28
+
29
+ Defaults to `false`, so existing builds are unchanged. `mastra dev` is never minified.
30
+
31
+ - Updated dependencies [[`1c75e32`](https://github.com/mastra-ai/mastra/commit/1c75e32f7fc0b9fb6f548b4407feaec8a1440212), [`c47165c`](https://github.com/mastra-ai/mastra/commit/c47165c983c87594c6952f1fd2fa51a90205034c), [`e08e789`](https://github.com/mastra-ai/mastra/commit/e08e789c1bf4cd2fe46363f7a4728536ceccc9bd), [`35cc901`](https://github.com/mastra-ai/mastra/commit/35cc90102cf834a84827acaf9eee0b6d6d1e2a3b), [`a8b4cf0`](https://github.com/mastra-ai/mastra/commit/a8b4cf02823cffebc4751a53337dfacf097c1ae1), [`f33264f`](https://github.com/mastra-ai/mastra/commit/f33264f517ae603279afd5c4251e2b40f6dd3618), [`689f2c4`](https://github.com/mastra-ai/mastra/commit/689f2c4b6c0835fe455702b01d21daa8abcd9331), [`eeae63e`](https://github.com/mastra-ai/mastra/commit/eeae63e7fbe8e1f237adc69bca6e2ac13c5ca907), [`4c186a0`](https://github.com/mastra-ai/mastra/commit/4c186a017275f45e6ed4c09de0f89550e2d09e8c), [`b0fa077`](https://github.com/mastra-ai/mastra/commit/b0fa077bcbc9b08551846fe372a0d3d15b71ed72), [`6810de3`](https://github.com/mastra-ai/mastra/commit/6810de34236f10ec6b82f3d0557937a831dcf9e5)]:
32
+ - @mastra/core@1.58.0-alpha.8
33
+ - @mastra/server@1.58.0-alpha.8
34
+
3
35
  ## 1.58.0-alpha.7
4
36
 
5
37
  ### Patch Changes
@@ -1,7 +1,7 @@
1
1
  const require_rolldown_runtime = require("./rolldown-runtime-emK7D4bc.cjs");
2
2
  const require_utils = require("./utils-O98BGdnP.cjs");
3
3
  const require_services = require("./services-_ksvysL5.cjs");
4
- const require_bundler = require("./bundler-u9WOUtpl.cjs");
4
+ const require_bundler = require("./bundler-DCGtF4jP.cjs");
5
5
  let child_process = require("child_process");
6
6
  let fs = require("fs");
7
7
  let fs_promises = require("fs/promises");
@@ -1431,4 +1431,4 @@ Object.defineProperty(exports, "packWorkspaceDependencies", {
1431
1431
  }
1432
1432
  });
1433
1433
 
1434
- //# sourceMappingURL=analyze-D100622N.cjs.map
1434
+ //# sourceMappingURL=analyze-BIrkd7zx.cjs.map