@mastra/deployer 1.58.0-alpha.7 → 1.58.0-alpha.8
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/CHANGELOG.md +24 -0
- package/dist/{analyze-D100622N.cjs → analyze-BIrkd7zx.cjs} +2 -2
- package/dist/{analyze-D100622N.cjs.map → analyze-BIrkd7zx.cjs.map} +1 -1
- package/dist/{analyze-7xxwhB5F.js → analyze-CNv6Qdaz.js} +2 -2
- package/dist/{analyze-7xxwhB5F.js.map → analyze-CNv6Qdaz.js.map} +1 -1
- package/dist/build/analyze.cjs +1 -1
- package/dist/build/analyze.js +1 -1
- package/dist/build/bundler.cjs +1 -1
- package/dist/build/bundler.d.ts +2 -1
- package/dist/build/bundler.d.ts.map +1 -1
- package/dist/build/bundler.js +1 -1
- package/dist/build/index.cjs +4 -4
- package/dist/build/index.js +4 -4
- package/dist/build/types.d.ts +5 -0
- package/dist/build/types.d.ts.map +1 -1
- package/dist/build/watcher.d.ts.map +1 -1
- package/dist/{build-YV8-9zZy.cjs → build-BERX35Pi.cjs} +5 -4
- package/dist/build-BERX35Pi.cjs.map +1 -0
- package/dist/{build-DEie1huB.js → build-kZfvpuh9.js} +5 -4
- package/dist/build-kZfvpuh9.js.map +1 -0
- package/dist/bundler/index.cjs +1 -1
- package/dist/bundler/index.d.ts +1 -1
- package/dist/bundler/index.d.ts.map +1 -1
- package/dist/bundler/index.js +1 -1
- package/dist/{bundler-M44kSNON.js → bundler-Ct1ToG6x.js} +7 -5
- package/dist/bundler-Ct1ToG6x.js.map +1 -0
- package/dist/{bundler-u9WOUtpl.cjs → bundler-DCGtF4jP.cjs} +7 -3
- package/dist/{bundler-u9WOUtpl.cjs.map → bundler-DCGtF4jP.cjs.map} +1 -1
- package/dist/{bundler-COBoQziJ.cjs → bundler-DLXwkS7b.cjs} +7 -5
- package/dist/bundler-DLXwkS7b.cjs.map +1 -0
- package/dist/{bundler-U9F2---r.js → bundler-gff4vn1T.js} +8 -4
- package/dist/bundler-gff4vn1T.js.map +1 -0
- package/dist/{bundlerOptions-CYRir4LE.cjs → bundlerOptions-CjjAPZYp.cjs} +2 -2
- package/dist/{bundlerOptions-CYRir4LE.cjs.map → bundlerOptions-CjjAPZYp.cjs.map} +1 -1
- package/dist/{bundlerOptions-9DigsVhY.js → bundlerOptions-NMtZPD7p.js} +2 -2
- package/dist/{bundlerOptions-9DigsVhY.js.map → bundlerOptions-NMtZPD7p.js.map} +1 -1
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.js +3 -3
- package/package.json +7 -7
- package/dist/build-DEie1huB.js.map +0 -1
- package/dist/build-YV8-9zZy.cjs.map +0 -1
- package/dist/bundler-COBoQziJ.cjs.map +0 -1
- package/dist/bundler-M44kSNON.js.map +0 -1
- package/dist/bundler-U9F2---r.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @mastra/deployer
|
|
2
2
|
|
|
3
|
+
## 1.58.0-alpha.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Add `bundler.minify` to minify `mastra build` output ([#21032](https://github.com/mastra-ai/mastra/pull/21032))
|
|
8
|
+
|
|
9
|
+
`mastra build` always emitted unminified code, which is larger than necessary when packaging for production — a container image or an on-prem deployment.
|
|
10
|
+
|
|
11
|
+
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.
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
export const mastra = new Mastra({
|
|
15
|
+
bundler: {
|
|
16
|
+
minify: true,
|
|
17
|
+
},
|
|
18
|
+
});
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Defaults to `false`, so existing builds are unchanged. `mastra dev` is never minified.
|
|
22
|
+
|
|
23
|
+
- 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)]:
|
|
24
|
+
- @mastra/core@1.58.0-alpha.8
|
|
25
|
+
- @mastra/server@1.58.0-alpha.8
|
|
26
|
+
|
|
3
27
|
## 1.58.0-alpha.7
|
|
4
28
|
|
|
5
29
|
### 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-
|
|
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-
|
|
1434
|
+
//# sourceMappingURL=analyze-BIrkd7zx.cjs.map
|