@mastra/core 0.9.0-alpha.3 → 0.9.0-alpha.4
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/dist/bundler/index.d.cts
CHANGED
|
@@ -8,7 +8,7 @@ import '@opentelemetry/sdk-trace-base';
|
|
|
8
8
|
interface IBundler {
|
|
9
9
|
loadEnvVars(): Promise<Map<string, string>>;
|
|
10
10
|
getEnvFiles(): Promise<string[]>;
|
|
11
|
-
bundle(entryFile: string, outputDirectory: string): Promise<void>;
|
|
11
|
+
bundle(entryFile: string, outputDirectory: string, toolsPaths: string[]): Promise<void>;
|
|
12
12
|
prepare(outputDirectory: string): Promise<void>;
|
|
13
13
|
writePackageJson(outputDirectory: string, dependencies: Map<string, string>): Promise<void>;
|
|
14
14
|
}
|
|
@@ -22,7 +22,7 @@ declare abstract class MastraBundler extends MastraBase implements IBundler {
|
|
|
22
22
|
abstract writePackageJson(outputDirectory: string, dependencies: Map<string, string>): Promise<void>;
|
|
23
23
|
abstract writeInstrumentationFile(outputDirectory: string): Promise<void>;
|
|
24
24
|
abstract getEnvFiles(): Promise<string[]>;
|
|
25
|
-
abstract bundle(entryFile: string, outputDirectory: string): Promise<void>;
|
|
25
|
+
abstract bundle(entryFile: string, outputDirectory: string, toolsPaths: string[]): Promise<void>;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
export { type IBundler, MastraBundler };
|
package/dist/bundler/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import '@opentelemetry/sdk-trace-base';
|
|
|
8
8
|
interface IBundler {
|
|
9
9
|
loadEnvVars(): Promise<Map<string, string>>;
|
|
10
10
|
getEnvFiles(): Promise<string[]>;
|
|
11
|
-
bundle(entryFile: string, outputDirectory: string): Promise<void>;
|
|
11
|
+
bundle(entryFile: string, outputDirectory: string, toolsPaths: string[]): Promise<void>;
|
|
12
12
|
prepare(outputDirectory: string): Promise<void>;
|
|
13
13
|
writePackageJson(outputDirectory: string, dependencies: Map<string, string>): Promise<void>;
|
|
14
14
|
}
|
|
@@ -22,7 +22,7 @@ declare abstract class MastraBundler extends MastraBase implements IBundler {
|
|
|
22
22
|
abstract writePackageJson(outputDirectory: string, dependencies: Map<string, string>): Promise<void>;
|
|
23
23
|
abstract writeInstrumentationFile(outputDirectory: string): Promise<void>;
|
|
24
24
|
abstract getEnvFiles(): Promise<string[]>;
|
|
25
|
-
abstract bundle(entryFile: string, outputDirectory: string): Promise<void>;
|
|
25
|
+
abstract bundle(entryFile: string, outputDirectory: string, toolsPaths: string[]): Promise<void>;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
export { type IBundler, MastraBundler };
|