From 02e0e1d748e1ed64537d9f55af678df3baf5d034 Mon Sep 17 00:00:00 2001 From: bholmesdev Date: Mon, 11 Jul 2022 19:00:30 -0400 Subject: [PATCH] fix: add quotes on filter flag for safety --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f7c60edd3..c75678e97 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "test": "turbo run test --output-logs=new-only --concurrency=1", "test:match": "cd packages/astro && pnpm run test:match", "test:templates": "turbo run test --filter=create-astro --concurrency=1", - "test:smoke": "turbo run build --filter=@example/* --filter=!@example/with-mdx --output-logs=new-only", + "test:smoke": "turbo run build --filter=\"@example/*\" --filter=\"!@example/with-mdx\" --output-logs=new-only", "test:vite-ci": "turbo run test --output-logs=new-only --no-deps --scope=astro --concurrency=1", "test:e2e": "cd packages/astro && pnpm playwright install && pnpm run test:e2e", "test:e2e:match": "cd packages/astro && pnpm playwright install && pnpm run test:e2e:match",