From 73e7f751b7a355288fb9750c5661eddb4f4968e2 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Sun, 5 Apr 2020 11:16:03 +0200 Subject: [PATCH] package: add test:all and lint:all --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index a7ad611eea..6b15b4cfc0 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,9 @@ "bundle": "yarn build && yarn workspace example-app bundle", "build": "lerna run build", "test": "yarn build && lerna run test --since origin/master -- --coverage", + "test:all": "yarn build && lerna run test -- --coverage", "lint": "lerna run lint --since origin/master --", + "lint:all": "lerna run lint --", "docker-build": "yarn bundle && docker build . -t spotify/backstage", "create-plugin": "backstage-cli create-plugin", "release": "if [ \"$(git symbolic-ref --short HEAD)\" = master ]; then echo \"don't try to release master\"; exit 1; else lerna version --no-push; fi",