From 6c495ebd8b0108541075db54ac858c3c16706cef Mon Sep 17 00:00:00 2001 From: ludamad Date: Thu, 21 Sep 2023 07:05:01 +0100 Subject: [PATCH] fix(docs): 'command not found: export' --- docs/docs/dev_docs/getting_started/sandbox.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/dev_docs/getting_started/sandbox.md b/docs/docs/dev_docs/getting_started/sandbox.md index 46f9f5f5bae..e9e4a5c7228 100644 --- a/docs/docs/dev_docs/getting_started/sandbox.md +++ b/docs/docs/dev_docs/getting_started/sandbox.md @@ -117,7 +117,7 @@ Add a `tsconfig.json` file into the project root, here is an example: "build": "yarn clean && tsc -b", "build:dev": "tsc -b --watch", "clean": "rm -rf ./dest tsconfig.tsbuildinfo", - "start": "yarn build && export DEBUG='token' && node ./dest/index.js" + "start": "yarn build && DEBUG='token' node ./dest/index.js" }, "devDependencies": { "@types/node": "^20.4.9",