-
Notifications
You must be signed in to change notification settings - Fork 167
New issue
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
Production mode flow-build-info.json contains local file paths #6336
Comments
The generation of |
This isn't only a cosmetic issue that might cause confusion. vaadin/addon-template#18 in combination with #6233 may cause a situation where the implicit configuration based on cwd won't be applied because a |
ujoni
pushed a commit
that referenced
this issue
Sep 6, 2019
If the npm or frontend folders do not exist in the filesystem throw exception (Only fail if the frontend folder is defined outside of the npm folder) If the frontend folder is a subfolder to the npm, folder and the npm folder exists do not fail as we will create the empty frontend folder. Fixes #6396 Closes #6336
denis-anisimov
pushed a commit
that referenced
this issue
Sep 9, 2019
If the npm or frontend folders do not exist in the filesystem throw exception (Only fail if the frontend folder is defined outside of the npm folder) If the frontend folder is a subfolder to the npm, folder and the npm folder exists do not fail as we will create the empty frontend folder. Fixes #6396 Closes #6336
caalador
added a commit
that referenced
this issue
Sep 9, 2019
If the npm or frontend folders do not exist in the filesystem throw exception (Only fail if the frontend folder is defined outside of the npm folder) If the frontend folder is a subfolder to the npm, folder and the npm folder exists do not fail as we will create the empty frontend folder. Fixes #6396 Closes #6336
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The production build (e.g.
mvn package -Pproduction
with Beverage Buddy) creates aflow-build-info.json
file which contains redundant local file path references (e.g.npmFolder
).This information is completely redundant for running the application in production mode, and may cause some confusion since it's not apparent that the path will not be used.
For this reason, it would be better if
build-frontend
would produce a json file without those properties.The text was updated successfully, but these errors were encountered: