Skip to content

Commit f8eafe0

Browse files
chore: fix typo in tags manifest path (#54)
Co-authored-by: Rob Stanford <[email protected]>
1 parent 7a4bfc8 commit f8eafe0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/run/handlers/cache.cts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import type { PrerenderManifest } from 'next/dist/build/index.js'
1717

1818
type TagManifest = { revalidatedAt: number }
1919

20-
const tagsManifestPath = '.netlfiy/cache/tags'
20+
const tagsManifestPath = '.netlify/cache/tags'
2121
export const blobStore = getDeployStore()
2222

2323
// load the prerender manifest

tests/integration/revalidate-path.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ test<FixtureTestContext>('should revalidate a route by path', async (ctx) => {
3131
await runPlugin(ctx)
3232

3333
expect(await ctx.blobStore.get('server/app/static-fetch/1')).not.toBeNull()
34-
expect(await ctx.blobStore.get('.netlfiy/cache/tags/_N_T_/static-fetch/[id]/page')).toBeNull()
34+
expect(await ctx.blobStore.get('.netlify/cache/tags/_N_T_/static-fetch/[id]/page')).toBeNull()
3535

3636
// test the function call
3737
const [post1, post1Route2] = await Promise.all([
@@ -63,7 +63,7 @@ test<FixtureTestContext>('should revalidate a route by path', async (ctx) => {
6363
await new Promise<void>((resolve) => setTimeout(resolve, 1000))
6464

6565
const entries = await getBlobEntries(ctx)
66-
expect(await ctx.blobStore.get('.netlfiy/cache/tags/_N_T_/static-fetch/[id]/page')).not.toBeNull()
66+
expect(await ctx.blobStore.get('.netlify/cache/tags/_N_T_/static-fetch/[id]/page')).not.toBeNull()
6767

6868
const [post2, post2Route2] = await Promise.all([
6969
invokeFunction(ctx, { url: '/static-fetch/1' }),

0 commit comments

Comments
 (0)