frontend-maven-plugin
frontend-maven-plugin copied to clipboard
Maven proxy settings are incorrectly passed to yarn
Version 1.6
Relates to issue #660
frontend-maven-plugin calls yarn with:
yarn run build-prod --https-proxy=http://proxy:8080 --proxy=proxy:8080
Causing:
[ERROR] Unknown option: '--https-proxy'
[ERROR] Unknown option: '--proxy'
I think it should be:
yarn --https-proxy=http://proxy:8080 --proxy=proxy:8080 run build-prod
same bug for npm
Do we have any update on this issue?
It's resolved in version 1.12.0
There is the same problem with npm but 1.12.0 seems to be already bad
It's resolved in version 1.12.0
It is not - and the PR is also still open. @eirslett any means to fix this issue from the plugin side?
problem also exists in version 1.12.1. Would be great to have a solution for this.