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: