From baf3ba7dc21005c56c0cbe625d9f3ad2d270c77d Mon Sep 17 00:00:00 2001 From: Maximilian Roos <5635139+max-sixty@users.noreply.github.com> Date: Tue, 20 Jun 2023 01:21:42 -0700 Subject: [PATCH] devops: `run-playground` task (#2880) --- Taskfile.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 786167d440c3..5c13395a3cf0 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -297,13 +297,14 @@ tasks: desc: Build & serve the playground. dir: web/playground cmds: - - task: install-playground-npm-dependencies + - npm install --install-links=false - npm start - run-pg: - desc: Serve the playground without building it + run-playground-cached: + desc: Build & serve the playground, without rebuilding rust code. dir: web/playground cmds: + - task: install-playground-npm-dependencies - npm start install-playground-npm-dependencies: