Browse Source

Enforced exact dependency lockfile match for frontend builds

pull/15463/head
Oleksandra Matviienko 1 month ago
parent
commit
5ca93f7b1a
  1. 2
      msa/js-executor/pom.xml
  2. 2
      msa/web-ui/pom.xml
  3. 2
      ui-ngx/pom.xml

2
msa/js-executor/pom.xml

@ -80,7 +80,7 @@
<goal>yarn</goal>
</goals>
<configuration>
<arguments>install --non-interactive --check-files --network-concurrency 4 --network-timeout 100000 --mutex network</arguments>
<arguments>install --frozen-lockfile --non-interactive --check-files --network-concurrency 4 --network-timeout 100000 --mutex network</arguments>
</configuration>
</execution>
<execution>

2
msa/web-ui/pom.xml

@ -89,7 +89,7 @@
<goal>yarn</goal>
</goals>
<configuration>
<arguments>install --non-interactive --check-files --network-concurrency 4 --network-timeout 100000 --mutex network</arguments>
<arguments>install --frozen-lockfile --non-interactive --check-files --network-concurrency 4 --network-timeout 100000 --mutex network</arguments>
</configuration>
</execution>
<execution>

2
ui-ngx/pom.xml

@ -66,7 +66,7 @@
<goal>yarn</goal>
</goals>
<configuration>
<arguments>install --non-interactive --check-files --network-concurrency 4 --network-timeout 100000 --mutex network</arguments>
<arguments>install --frozen-lockfile --non-interactive --check-files --network-concurrency 4 --network-timeout 100000 --mutex network</arguments>
</configuration>
</execution>
</executions>

Loading…
Cancel
Save