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
If you have an assets folder with no TS files, the folder is not present in the output directory. copy-files doesn't make the path before/when copying
copy-files
Error: ENOENT: no such file or directory, copyfile 'src/assets/styles/_common.scss' -> 'dist/assets/styles/_common.scss'
The text was updated successfully, but these errors were encountered:
Same issue here.
Config snippet
"include": [ "src/**/*.ts", "src/**/*.xml", "src/**/*.json" ], "exclude": [ "node_modules", "cdktf.out" ], "hooks": [ "copy-files" ]
trying to get /src/policies/policy.xml to be in the /dist/policies/policy.xml
/src/policies/policy.xml
/dist/policies/policy.xml
dist folder is empty
Sorry, something went wrong.
@luke
Same issue here. Config snippet "include": [ "src/**/*.ts", "src/**/*.xml", "src/**/*.json" ], "exclude": [ "node_modules", "cdktf.out" ], "hooks": [ "copy-files" ] trying to get /src/policies/policy.xml to be in the /dist/policies/policy.xml dist folder is empty
"Hello, I need to add an 'include' file from the 'dist' folder in this example."
"include": [ "/src/policies", "src/**/*.ts", "src/**/*.xml", "src/**/*.json" ],
No branches or pull requests
If you have an assets folder with no TS files, the folder is not present in the output directory.
copy-files
doesn't make the path before/when copyingError: ENOENT: no such file or directory, copyfile 'src/assets/styles/_common.scss' -> 'dist/assets/styles/_common.scss'
The text was updated successfully, but these errors were encountered: