diff options
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | lib/license/management/version.rb | 2 | ||||
| -rwxr-xr-x | run.sh | 3 |
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4354ab0..44faec0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # GitLab License management changelog +## v1.8.2 + +- Ignore node version for installing npm dependencies(!79) + ## v1.8.1 - Add mapping for `Apache License v2.0` to `Apache-2.0` (!78) diff --git a/lib/license/management/version.rb b/lib/license/management/version.rb index f42933e..4047dff 100644 --- a/lib/license/management/version.rb +++ b/lib/license/management/version.rb @@ -2,6 +2,6 @@ module License module Management - VERSION = '1.8.0' + VERSION = '1.8.2' end end @@ -136,7 +136,8 @@ case "$COMMAND" in trap restore_lockfile EXIT echo "Convert package-lock.json to yarn.lock" - yarn import + npm install + yarn import --ignore-engines --ignore-scripts fi # install via yarn |
