lage 2.6.2 → 2.6.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/index.d.ts +5 -2
- package/dist/lage.js +153 -153
- package/dist/lage.js.map +2 -2
- package/dist/workers/targetWorker.js +55 -306
- package/dist/workers/targetWorker.js.map +4 -4
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -2,9 +2,12 @@
|
|
|
2
2
|
// Bundle of types from "lage" and packages it references.
|
|
3
3
|
// This file was generated by dts-bundle-generator and packages/lage/scripts/update-dts-bundle.js
|
|
4
4
|
|
|
5
|
-
import { Config as BackfillCacheOptions } from './backfill-config.js';
|
|
5
|
+
import { Config as BackfillCacheOptions, CustomStorageConfig } from './backfill-config.js';
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
type LageBackfillCacheOptions = Omit<BackfillCacheOptions, "cacheStorageConfig"> & {
|
|
8
|
+
cacheStorageConfig: Exclude<BackfillCacheOptions["cacheStorageConfig"], CustomStorageConfig>;
|
|
9
|
+
};
|
|
10
|
+
export type CacheOptions = LageBackfillCacheOptions & {
|
|
8
11
|
environmentGlob: string[];
|
|
9
12
|
cacheKey: string;
|
|
10
13
|
writeRemoteCache: boolean;
|