Skip to content

Commit 610fb66

Browse files
authored
Cache: ignore PNPM and Bun (#610)
1 parent aed14c6 commit 610fb66

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,11 @@ export const prepareCache: PrepareCache = async ({ workPath }) => {
144144
...(await glob('node_modules/**', workPath)),
145145
...(await glob('package-lock.json', workPath)),
146146
...(await glob('yarn.lock', workPath)),
147+
...(await glob('pnpm-lock.yaml', workPath)),
148+
// Bun
149+
...(await glob('bun.lock', workPath)),
150+
/* in case still used */
151+
...(await glob('bun.lockb', workPath)),
147152
};
148153
};
149154

0 commit comments

Comments
 (0)