From 5b6a1168d198378e17c9aa54d13e2eb5788acbfd Mon Sep 17 00:00:00 2001 From: Abhijith Chatra Date: Fri, 28 Apr 2017 17:26:19 -0700 Subject: [PATCH] fixing getting started --- .vscode/launch.json | 46 +++++++++++++++++++++++++++++++ docs/tutorials/getting-started.md | 2 +- 2 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..d883b46d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,46 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Launch", + "type": "node", + "request": "launch", + "program": "${workspaceRoot}/../pxt/built/pxt.js", + "stopOnEntry": false, + "args": ["serve"], + "cwd": "${workspaceRoot}", + "preLaunchTask": null, + "runtimeExecutable": null, + "runtimeArgs": [ + "--nolazy" + ], + "env": { + "NODE_ENV": "development" + }, + "console": "internalConsole", + "sourceMaps": false, + "outDir": null + }, + { + "name": "Attach", + "type": "node", + "request": "attach", + "port": 5858, + "address": "localhost", + "restart": false, + "sourceMaps": false, + "outDir": null, + "localRoot": "${workspaceRoot}", + "remoteRoot": null + }, + { + "name": "Attach to Process", + "type": "node", + "request": "attach", + "processId": "${command.PickProcess}", + "port": 5858, + "sourceMaps": false, + "outDir": null + } + ] +} \ No newline at end of file diff --git a/docs/tutorials/getting-started.md b/docs/tutorials/getting-started.md index 8783567d..047da085 100644 --- a/docs/tutorials/getting-started.md +++ b/docs/tutorials/getting-started.md @@ -66,4 +66,4 @@ input.onGesture(Gesture.Shake, () => { ### Step 7 -Well done! You have complete this activity. \ No newline at end of file +Well done! You have completed this activity. \ No newline at end of file