From 208d5e3433a8d436f84b28a625bd32ff511026aa Mon Sep 17 00:00:00 2001 From: obergodmar Date: Wed, 19 Aug 2020 15:36:05 +0300 Subject: [PATCH] Replace npm run with yarn --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index f260786..ef94a05 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,8 @@ "stylelint-config-recommended-scss": "^4.2.0", "stylelint-config-standard": "^20.0.0", "stylelint-scss": "^3.18.0", - "typescript": "^3.9.5" + "typescript": "^3.9.5", + "yarn": "^1.22.4" }, "scripts": { "start": "serve ./build", @@ -55,7 +56,7 @@ "eslint:fix": "npx eslint --ext .ts,.tsx . --fix ./src", "stylelint": "npx stylelint \"src/**/*.scss\"", "stylelint:fix": "npx stylelint --fix \"src/**/*.scss\"", - "test": "npm run test:u && npm run test:cov", + "test": "yarn test:u && yarn test:cov", "test:u": "jest -u", "test:cov": "jest --coverage" },