From cef60f76af53d057114c3a1c99ac24af75664ad2 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 6 Nov 2023 15:48:17 +0000 Subject: [PATCH] chore: add stackblitz run commands for playgrounds --- examples/app/.stackblitz/config.json | 3 +++ examples/module/.stackblitz/config.json | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 examples/app/.stackblitz/config.json create mode 100644 examples/module/.stackblitz/config.json diff --git a/examples/app/.stackblitz/config.json b/examples/app/.stackblitz/config.json new file mode 100644 index 000000000..461382e13 --- /dev/null +++ b/examples/app/.stackblitz/config.json @@ -0,0 +1,3 @@ +{ + "startCommand": "npm run test" +} diff --git a/examples/module/.stackblitz/config.json b/examples/module/.stackblitz/config.json new file mode 100644 index 000000000..c2f891681 --- /dev/null +++ b/examples/module/.stackblitz/config.json @@ -0,0 +1,3 @@ +{ + "startCommand": "npm run dev:prepare && npm run test" +}