mirror of
https://github.com/google/nomulus.git
synced 2025-08-06 01:35:17 +02:00
Update NPM plugin and hardcode versions of Node / NPM to use (#971)
* Update NPM plugin and hardcode versions of Node / NPM to use The plugin we were using before was a bit old (last updated in March 2019) and this one is newer, updated, and updates the package-lock file with the new dependency upgrades
This commit is contained in:
parent
a07fbb27c5
commit
f35eda6dc1
4 changed files with 76 additions and 1989 deletions
|
@ -40,7 +40,7 @@ plugins {
|
|||
id 'com.github.johnrengelman.shadow' version '5.1.0'
|
||||
|
||||
// NodeJs plugin
|
||||
id "com.moowork.node" version "1.2.0"
|
||||
id "com.github.node-gradle.node" version "3.0.1"
|
||||
|
||||
id 'idea'
|
||||
id 'com.diffplug.gradle.spotless' version '3.25.0'
|
||||
|
@ -49,6 +49,12 @@ plugins {
|
|||
id 'com.dorongold.task-tree' version '1.5'
|
||||
}
|
||||
|
||||
node {
|
||||
download = true
|
||||
version = "14.15.5"
|
||||
npmVersion = "6.14.11"
|
||||
}
|
||||
|
||||
wrapper {
|
||||
distributionType = Wrapper.DistributionType.ALL
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue