Skip to content
This repository was archived by the owner on Mar 19, 2026. It is now read-only.
This repository was archived by the owner on Mar 19, 2026. It is now read-only.

Allow .dot files/directories to be properly copied back after caching #396

Description

@IgnusG

The cache is properly created for hidden (.dot) files and directories but these are not copied back after a cache hit since globby's default is to not include them:

const files = await globby(`**/*`, {
cwd: localCacheFolder,
});

These lines should either be:

    const files = await globby(`**/*`, {
      cwd: localCacheFolder,
      dot: true,
    });

Or they should be made configurable.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions