frontend-maven-plugin
frontend-maven-plugin copied to clipboard
"Maven-node-grunt-gulp-npm-node-plugin to end all maven-node-grunt-gulp-npm-plugins." A Maven plugin that downloads/installs Node and NPM locally, runs NPM install, Grunt, Gulp and/or Karma.
Have a _package.json_ like: ``` .. "scripts": { "build": "pnpm build-a && pnpm build-b", "build-a": "webpack --config webpack.config.a.js", "build-b": "webpack --config webpack.config.b.js" } .. ``` It is not possible to...
In your sample project at https://github.com/eirslett/frontend-maven-plugin/blob/master/frontend-maven-plugin/src/it/example%20project/pom.xml, you have a step which does `npm install`. Is that really necessary? My project is usually going to be up-to-date with anything that it...
**Feature Request** Please skip execution if nothing was changed. **What is the current behavior?** The plugin runs external processes, like npm or ng, even in case the source code or...
``` $ ./mvnw com.github.eirslett:frontend-maven-plugin:install-node-and-npm -DnodeVersion=v12.13.1 -DnpmVersion=6.13.4 -Dmaven.repo.local=$MAVEN_USER_HOME [ERROR] The archive file .../.maven/com/github/eirslett/node/12.13.1/node-12.13.1-linux-x64.tar.gz is corrupted and will be deleted. Please try the build again. [ERROR] Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.8.0: install-node-and-npm...
When I run a build, I sometimes get this error: `Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.12.0:install-node-and-npm (install node and npm) on project demoIntegrate: Could not install Node: Unable to delete file:...
fixes #798 **Summary** **Tests and Documentation**
**Do you want to request a _feature_ or report a _bug_?** _feature_ **What is the current behavior?** You have to specify the nodeVersion and yarnVersion **What is the expected behavior?**...
Some frameworks need to pre-compile some files before making the front app available. See [xslt3](https://www.npmjs.com/package/xslt3) for example where we need to pre-compile xslt files with this commande : ``` node...
**Do you want to request a _feature_ or report a _bug_?** Bug **What is the current behavior?** Using `install-node-and-yarn` and `yarnInheritsProxyConfigFromMaven` and performing a `eslint ./src/main/webapp/*/*.js` leads to `Invalid option...
I try to build a jHipster-based app with updated libs. maven runs `yarn run webpack:prod --https-proxy=http://proxy:8080 --proxy=http://proxy:8080` ok until yarn.version=1.0, then it failed with warning. > warning From Yarn 1.0...