Skip to content
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

Add m2e support for npm, npx and yarn goals #955

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update README.md and CHANGELOG.md
  • Loading branch information
David Mell committed Feb 12, 2021
commit 55ba3096d0841d90c3b919a94a4ec422474dd7c4
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Last public release: [![Maven Central](https://maven-badges.herokuapp.com/maven-

## Changelog

### 1.12.0

* Add m2e support for npm, npx and yarn goals

### 1.11.0

* Upgrade Jackson dependency to Jackson 2.9.10
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -517,10 +517,10 @@ Tools and property to enable skipping
## Eclipse M2E support

This plugin contains support for M2E, including lifecycle mappings and support for incremental builds in Eclipse.
The `install-node-and-npm` goal will only run on a full project build. The other goals support incremental builds
to avoid doing unnecessary work. During an incremental build the `npm` goal will only run if the `package.json` file
has been changed. The `grunt` and `gulp` goals have new `srcdir` and `triggerfiles` optional configuration options; if
these are set they check for changes in your source files before being run. See the wiki for more information.
The `install-node-and-npm` and `install-node-and-yarn` goals will only run on a full project build. The other goals support incremental builds
to avoid doing unnecessary work. Most goals have `srcdir` and `triggerfiles` optional configuration options; if
these are set they check for changes in your source files before being run. By default, during an incremental build
the `npm` and `yarn` goals will only run if the `package.json` file has been changed. See the wiki for more information.

## Helper scripts

Expand Down