This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch branch-0.12
in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/branch-0.12 by this push:
new c7aa1cdc67 [ZEPPELIN-6116] Switch from `npm install --no-lockfile` to
`npm ci`
c7aa1cdc67 is described below
commit c7aa1cdc6736e34e29d83cb386cf907aaff24c7e
Author: Charlie91 <[email protected]>
AuthorDate: Thu Oct 3 16:04:39 2024 +0300
[ZEPPELIN-6116] Switch from `npm install --no-lockfile` to `npm ci`
### What is this PR for?
tiny fix to make code cleaner
### What type of PR is it?
Refactoring
### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-6116
Closes #4855 from Charlie91/delete-useless-npm-flag.
Signed-off-by: Cheng Pan <[email protected]>
(cherry picked from commit 5c1145fcd60d8b6836d50f58a45fd67f43b50c5e)
Signed-off-by: Cheng Pan <[email protected]>
---
zeppelin-web-angular/pom.xml | 2 +-
zeppelin-web/pom.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/zeppelin-web-angular/pom.xml b/zeppelin-web-angular/pom.xml
index ee1e7b4347..ec142f8be8 100644
--- a/zeppelin-web-angular/pom.xml
+++ b/zeppelin-web-angular/pom.xml
@@ -80,7 +80,7 @@
</goals>
<configuration>
<skip>${web.e2e.enabled}</skip>
- <arguments>install --no-lockfile</arguments>
+ <arguments>ci</arguments>
</configuration>
</execution>
diff --git a/zeppelin-web/pom.xml b/zeppelin-web/pom.xml
index 5c2e5b6c03..47258e9471 100644
--- a/zeppelin-web/pom.xml
+++ b/zeppelin-web/pom.xml
@@ -119,7 +119,7 @@
</goals>
<configuration>
<skip>${web.e2e.enabled}</skip>
- <arguments>install --no-lockfile</arguments>
+ <arguments>ci</arguments>
</configuration>
</execution>