Skip to content

Update package-lock.json

In the pipeline we use npm ci, which installs exactly the versions that we have specified in our package-lock.json. The npm install that we use for local development, just uses npm install - which can use newer versions then the npm ci.

As it runs locally, but triggers an error in the ci pipeline, I decided to make a fresh package-lock.json by just running npm install locally.

Closes #392 (closed)

Merge request reports