Skip to content
Snippets Groups Projects
Commit 02ec62ff authored by Martin Lowe's avatar Martin Lowe :flag_ca:
Browse files

Switch from npm to yarn (better supported in build agent)

parent cc05b575
No related branches found
No related tags found
1 merge request!8Switch from npm to yarn (better supported in build agent)
......@@ -6,12 +6,12 @@ compile-java-quick: validate-spec;
mvn compile package -Dmaven.test.skip=true
compile: clean compile-java;
compile-quick: clean compile-java-quick;
install-npm:;
npm ci
generate-spec: install-npm;
npm run generate-json-schema
validate-spec: install-npm;
npm run test
install-yarn:;
yarn install --frozen-lockfile --audit
generate-spec: install-yarn;
yarn run generate-json-schema
validate-spec: install-yarn;
yarn run test
compile-start: compile-quick;
docker-compose down
docker-compose build
......@@ -21,7 +21,7 @@ compile-start-headless: compile-quick;
docker-compose build
docker-compose up -d
start-spec: validate-spec;
npm run start
yarn run start
generate-notice-src:;
docker run -v $(PWD)/:/project \
-v /project/node_modules \
......
This diff is collapsed.
yarn.lock 0 → 100644
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment