We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aed14c6 commit 610fb66Copy full SHA for 610fb66
src/index.ts
@@ -144,6 +144,11 @@ export const prepareCache: PrepareCache = async ({ workPath }) => {
144
...(await glob('node_modules/**', workPath)),
145
...(await glob('package-lock.json', workPath)),
146
...(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)),
152
};
153
154
0 commit comments