Skip to content

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

Open
@IgnusG

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