From 057f68a9b458ed3b6651f79996c5531591f6beaf Mon Sep 17 00:00:00 2001 From: Danny Brown Date: Sat, 28 Sep 2019 20:25:47 -0400 Subject: [PATCH] fix: yarn run start as alias for yarn run dev (#973) --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 49eccf664f7..b47df9ba09c 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "dev:project": ".scripts/dev.sh", "dev:orthanc": "lerna run dev:orthanc --stream", "orthanc:up": "docker-compose -f .docker/Nginx-Orthanc/docker-compose.yml up", + "start": "yarn run dev", "test": "yarn run test:unit", "test:unit": "jest --collectCoverage", "test:unit:ci": "lerna run test:unit:ci --parallel --stream",