From 639b53776900afd04fd349aca70c1eb4dfcd0939 Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Wed, 7 Feb 2024 08:35:41 -0800 Subject: [PATCH] Fix start scripts Now we can start the frontend and test app again. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 39e08b3480..3d8de6b542 100644 --- a/package.json +++ b/package.json @@ -11,8 +11,8 @@ "lint:js": "eslint . --cache", "lint:js:fix": "eslint . --fix", "preinstall": "npx only-allow pnpm", - "start": "pnpm --filter frontend start", - "start:test-app": "pnpm --filter test-app start", + "start": "pnpm --filter frontend exec ember serve", + "start:test-app": "pnpm --filter test-app exec ember serve", "test:frontend": "pnpm run --filter frontend test", "test:test-app": "pnpm run --filter test-app test" },