We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
recursive
I installed latest cpy with yarn add cpy@sindresorhus/cpy.
cpy
yarn add cpy@sindresorhus/cpy
// copy.js // @ts-check import cpy from 'cpy' const args = process.argv.slice(2) cpy(args, args.pop())
node copy 'node_modules/shiki/{dist/*.wasm,languages,themes}/**' public/shiki
node copy 'node_modules/shiki/{dist/*.wasm,languages,themes}/**' public/shiki/_ # note the `/_` here
I also tried the following one and it failed.
node copy 'node_modules/shiki/{dist/*.wasm,languages/**,themes/**}' public/shiki
But the following one also worked
node copy 'node_modules/shiki/{dist/*.wasm,languages/**,themes/**}' public/shiki/_
The text was updated successfully, but these errors were encountered:
cc @Idered
Sorry, something went wrong.
@JounQin I found the issue and I'm working on solution
Successfully merging a pull request may close this issue.
I installed latest
cpy
withyarn add cpy@sindresorhus/cpy
.node copy 'node_modules/shiki/{dist/*.wasm,languages,themes}/**' public/shiki
I also tried the following one and it failed.
node copy 'node_modules/shiki/{dist/*.wasm,languages/**,themes/**}' public/shiki
But the following one also worked
node copy 'node_modules/shiki/{dist/*.wasm,languages/**,themes/**}' public/shiki/_
The text was updated successfully, but these errors were encountered: