@vertesia/memory 0.49.0 → 0.50.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/lib/types/Builder.d.ts +1 -0
- package/lib/types/ContentObject.d.ts +1 -0
- package/lib/types/ContentSource.d.ts +1 -0
- package/lib/types/MemoryPack.d.ts +1 -0
- package/lib/types/MemoryPackBuilder.d.ts +1 -0
- package/lib/types/commands/copy.d.ts +1 -0
- package/lib/types/commands/exec.d.ts +1 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/utils/cmdline.d.ts +1 -0
- package/lib/types/utils/rewrite.d.ts +1 -0
- package/lib/types/utils/stream.d.ts +1 -0
- package/lib/types/utils/tar.d.ts +1 -0
- package/package.json +3 -3
package/lib/types/Builder.d.ts
CHANGED
|
@@ -70,3 +70,4 @@ export declare class Builder implements Commands {
|
|
|
70
70
|
private _getOutputNames;
|
|
71
71
|
}
|
|
72
72
|
export declare function buildMemoryPack(recipeFn: (commands: Commands) => Promise<Record<string, any>>, options: BuildOptions): Promise<string>;
|
|
73
|
+
//# sourceMappingURL=Builder.d.ts.map
|
|
@@ -5,3 +5,4 @@ export interface ExecOptions {
|
|
|
5
5
|
}
|
|
6
6
|
export declare function exec(commandLine: string, options?: ExecOptions): Promise<string | undefined>;
|
|
7
7
|
export declare function executePipe(commands: Command[], finalOutput: Writable | undefined, verbose?: boolean): Promise<unknown>;
|
|
8
|
+
//# sourceMappingURL=exec.d.ts.map
|
package/lib/types/index.d.ts
CHANGED
|
@@ -12,3 +12,4 @@ export { MemoryPackBuilder } from "./MemoryPackBuilder.js";
|
|
|
12
12
|
export type { FromOptions } from "./MemoryPackBuilder.js";
|
|
13
13
|
export { TarBuilder, TarIndex, loadTarIndex } from './utils/tar.js';
|
|
14
14
|
export type { TarEntry, TarEntryIndex } from './utils/tar.js';
|
|
15
|
+
//# sourceMappingURL=index.d.ts.map
|
package/lib/types/utils/tar.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertesia/memory",
|
|
3
3
|
"description": "Manipulate memory images for LLMs",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.50.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./lib/types/index.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"glob": "^11.0.0",
|
|
21
21
|
"micromatch": "^4.0.8",
|
|
22
22
|
"tar-stream": "^3.1.7",
|
|
23
|
-
"@vertesia/
|
|
24
|
-
"@vertesia/
|
|
23
|
+
"@vertesia/json": "0.79.0",
|
|
24
|
+
"@vertesia/converters": "0.79.0"
|
|
25
25
|
},
|
|
26
26
|
"ts_dual_module": {
|
|
27
27
|
"outDir": "lib"
|