From 58dc196ce36ddb3c18b0fbffb688688dfe9aa82d Mon Sep 17 00:00:00 2001 From: gitcommitshow <56937085+gitcommitshow@users.noreply.github.com> Date: Sat, 22 Jun 2024 20:16:37 +0530 Subject: [PATCH] Delete .codesandbox directory (#1) (#19) --- .codesandbox/tasks.json | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .codesandbox/tasks.json diff --git a/.codesandbox/tasks.json b/.codesandbox/tasks.json deleted file mode 100644 index 8560ef6..0000000 --- a/.codesandbox/tasks.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - // These tasks will run in order when initializing your CodeSandbox project. - "setupTasks": [ - { - "name": "Install Dependencies", - "command": "npm install" - } - ], - - // These tasks can be run from CodeSandbox. Running one will open a log in the app. - "tasks": { - "server": { - "name": "server", - "command": "npm start" - }, - "lint": { - "name": "lint", - "command": "npm run lint" - }, - "n": { - "name": "n", - "command": "npm start", - "runAtStart": true, - "preview": { - "port": 3000 - } - } - } -}