@mastra/deployer 0.1.0-alpha.51 → 0.1.0-alpha.53
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 +14 -0
- package/dist/_tsup-dts-rollup.d.ts +6 -6
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @mastra/deployer
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.53
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [4534e77]
|
|
8
|
+
- @mastra/core@0.2.0-alpha.103
|
|
9
|
+
|
|
10
|
+
## 0.1.0-alpha.52
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [a9345f9]
|
|
15
|
+
- @mastra/core@0.2.0-alpha.102
|
|
16
|
+
|
|
3
17
|
## 0.1.0-alpha.51
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -14,7 +14,7 @@ import { MastraBundler } from '@mastra/core/bundler';
|
|
|
14
14
|
import type { MastraDeployer } from '@mastra/core';
|
|
15
15
|
import type { MastraVector } from '@mastra/core/vector';
|
|
16
16
|
import { OutputOptions } from 'rollup';
|
|
17
|
-
import { Plugin } from 'rollup';
|
|
17
|
+
import { Plugin as Plugin_2 } from 'rollup';
|
|
18
18
|
import { PluginContext } from 'rollup';
|
|
19
19
|
import { RenderedChunk } from 'rollup';
|
|
20
20
|
import { RollupBuild } from 'rollup';
|
|
@@ -24,7 +24,7 @@ import { ServerType } from '@hono/node-server';
|
|
|
24
24
|
import { Transform } from 'stream';
|
|
25
25
|
import { TypedResponse } from 'hono';
|
|
26
26
|
|
|
27
|
-
export declare function aliasHono():
|
|
27
|
+
export declare function aliasHono(): Plugin_2;
|
|
28
28
|
|
|
29
29
|
/**
|
|
30
30
|
* Main bundle analysis function that orchestrates the three-step process:
|
|
@@ -278,12 +278,12 @@ export declare const html = "\n<!doctype html>\n<html lang=\"en\">\n <head>\n
|
|
|
278
278
|
|
|
279
279
|
export declare function isNodeBuiltin(dep: string): boolean;
|
|
280
280
|
|
|
281
|
-
export declare function libSqlFix():
|
|
281
|
+
export declare function libSqlFix(): Plugin_2;
|
|
282
282
|
|
|
283
283
|
export declare function listIndexes(c: Context): Promise<Response>;
|
|
284
284
|
|
|
285
285
|
declare type NormalizedInputOptions = Omit<Partial<InputOptions>, 'plugins' | 'input' | 'external'> & {
|
|
286
|
-
plugins?:
|
|
286
|
+
plugins?: Plugin_2[];
|
|
287
287
|
input: InputOption;
|
|
288
288
|
external?: (string | RegExp)[];
|
|
289
289
|
};
|
|
@@ -305,7 +305,7 @@ export declare function removeAllExceptDeployer(): babel_2.PluginObj;
|
|
|
305
305
|
|
|
306
306
|
export declare function removeDeployer(): babel_2.PluginObj;
|
|
307
307
|
|
|
308
|
-
export declare function removeDeployer_alias_1(mastraEntry: string):
|
|
308
|
+
export declare function removeDeployer_alias_1(mastraEntry: string): Plugin_2;
|
|
309
309
|
|
|
310
310
|
export declare function rewriteLibsqlImport(): babel_2.PluginObj;
|
|
311
311
|
|
|
@@ -317,7 +317,7 @@ export declare function setAgentInstructionsHandler(c: Context): Promise<Respons
|
|
|
317
317
|
|
|
318
318
|
export declare function streamGenerateHandler(c: Context): Promise<Response | undefined>;
|
|
319
319
|
|
|
320
|
-
export declare function telemetryFix():
|
|
320
|
+
export declare function telemetryFix(): Plugin_2;
|
|
321
321
|
|
|
322
322
|
export declare function updateThreadHandler(c: Context): Promise<Response>;
|
|
323
323
|
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { Bundler } from './chunk-2KUA6SZ2.js';
|
|
1
2
|
import { FileService } from './chunk-26GWIITS.js';
|
|
2
3
|
export { FileService, getBundler, getWatcher } from './chunk-26GWIITS.js';
|
|
3
|
-
import { Bundler } from './chunk-2KUA6SZ2.js';
|
|
4
4
|
import { Deps } from './chunk-Q3WKR6OZ.js';
|
|
5
5
|
export { Deps, createChildProcessLogger, createPinoStream } from './chunk-Q3WKR6OZ.js';
|
|
6
6
|
import './chunk-WXH2HMQ2.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/deployer",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.53",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"rollup-plugin-esbuild": "^6.1.1",
|
|
53
53
|
"rollup-plugin-node-externals": "^8.0.0",
|
|
54
54
|
"zod": "^3.24.1",
|
|
55
|
-
"@mastra/core": "^0.2.0-alpha.
|
|
55
|
+
"@mastra/core": "^0.2.0-alpha.103"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@hono/node-server": "^1.13.7",
|