Skip to content

Commit 49fcd0f

Browse files
committed
re-use the useTagCache var from aws
1 parent 8034a33 commit 49fcd0f

File tree

1 file changed

+2
-2
lines changed
  • packages/cloudflare/src/cli/build

1 file changed

+2
-2
lines changed

packages/cloudflare/src/cli/build/build.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ export async function build(projectOpts: ProjectOptions): Promise<void> {
8787
createStaticAssets(options);
8888

8989
if (config.dangerous?.disableIncrementalCache !== true) {
90-
const { metaFiles } = createCacheAssets(options);
90+
const { useTagCache, metaFiles } = createCacheAssets(options);
9191
copyCacheAssets(options);
9292

93-
if (config.dangerous?.disableTagCache !== true) {
93+
if (useTagCache) {
9494
compileCacheAssetsManifestSqlFile(options, metaFiles);
9595
}
9696
}

0 commit comments

Comments
 (0)