diff --git a/src/index.ts b/src/index.ts index 652a16ec..1eb51f25 100644 --- a/src/index.ts +++ b/src/index.ts @@ -144,6 +144,11 @@ export const prepareCache: PrepareCache = async ({ workPath }) => { ...(await glob('node_modules/**', workPath)), ...(await glob('package-lock.json', workPath)), ...(await glob('yarn.lock', workPath)), + ...(await glob('pnpm-lock.yaml', workPath)), + // Bun + ...(await glob('bun.lock', workPath)), + /* in case still used */ + ...(await glob('bun.lockb', workPath)), }; };