Skip to content

Commit fcc9991

Browse files
authored
Use npm ci vs install (#92)
1 parent 06ce097 commit fcc9991

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ test:
99
go test -timeout 60s $(shell go list ./...)
1010

1111
test-ui:
12-
(cd web; npm install; npm run test)
12+
(cd web; npm ci; npm run test)
1313

1414
.PHONY: build
1515
build:
@@ -23,7 +23,7 @@ dist:
2323

2424
.PHONY: build-ui
2525
build-ui:
26-
(cd web; npm install; npm run build)
26+
(cd web; npm ci; npm run build)
2727
rm -rf cmd/capacitor/web/build
2828
mkdir -p cmd/capacitor/web/build
2929
@cp -r web/build/* cmd/capacitor/web/build

0 commit comments

Comments
 (0)