Skip to content

Commit

Permalink
fix(docs): 'command not found: export' (#2443)
Browse files Browse the repository at this point in the history
This broke on me going through the instructions
  • Loading branch information
ludamad authored Sep 21, 2023
1 parent e484c5f commit f56aa02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/dev_docs/getting_started/sandbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit f56aa02

Please sign in to comment.