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
Writing a file without a extension to be copied to the dist directory.
File without extension is not copied.
Guess the culprit lies in the following glob in the builder: https://github.com/SAP/ui5-builder/blob/master/lib/builder/builder.js#L375
When writing out all the resources builder does:
return workspace.byGlob("/**/*.*").then((resources) => {
Should be:
return workspace.byGlob("**/*").then((resources) => {
Or is it by design?
The text was updated successfully, but these errors were encountered:
Fixed by SAP/ui5-builder#637
Sorry, something went wrong.
SAP/ui5-builder@07aaa24
matz3
No branches or pull requests
Expected Behavior
Writing a file without a extension to be copied to the dist directory.
Current Behavior
File without extension is not copied.
Context
Guess the culprit lies in the following glob in the builder: https://github.com/SAP/ui5-builder/blob/master/lib/builder/builder.js#L375
When writing out all the resources builder does:
Should be:
Or is it by design?
The text was updated successfully, but these errors were encountered: