Skip to content

Commit f36e345

Browse files
committedMay 5, 2024
feat: add nodejs debugger configs to newly scaffolded project
1 parent 72300fb commit f36e345

File tree

4 files changed

+33
-1
lines changed

4 files changed

+33
-1
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
module.exports = () => (
2+
{
3+
// Use IntelliSense to learn about possible attributes.
4+
// Hover to view descriptions of existing attributes.
5+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Attach by Process ID",
10+
"processId": "${command:PickProcess}",
11+
"request": "attach",
12+
"skipFiles": [
13+
"<node_internals>/**"
14+
],
15+
"type": "node"
16+
},
17+
{
18+
"type": "node",
19+
"request": "launch",
20+
"name": "Launch Program",
21+
"skipFiles": [
22+
"<node_internals>/**"
23+
],
24+
"program": "${file}"
25+
}
26+
]
27+
}
28+
)

‎.suite-cli/cli/scripts/assets/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,4 @@ module.exports.rootPackageJsonContent = require('./rootPackageJsonContent.asset'
4141
module.exports.errorReadmeContent = require('./errorReadmeContent.asset')
4242
module.exports.fileStructureContent = require('./fileStructureContent.asset')
4343
module.exports.gitignoreContent = require('./gitignoreContent.asset')
44+
module.exports.debuggerConfigContent = require('./debuggerConfigContent.asset')

‎.suite-cli/cli/scripts/scripts.module.js

+3
Original file line numberDiff line numberDiff line change
@@ -702,8 +702,11 @@ const dockerPrune = ({ volume, all, force }) => {
702702
*/
703703
const addPackageJson = ({ projectPath, answers }) => {
704704
// Add a package.json
705+
mkdirSync(join(projectPath, '.vscode'), { recursive: true })
706+
writeFileSync(join(projectPath, 'package.json'), JSON.stringify(assets.rootPackageJsonContent({ answers, os, sep }), null, 2));
705707
writeFileSync(join(projectPath, 'package.json'), JSON.stringify(assets.rootPackageJsonContent({ answers, os, sep }), null, 2));
706708
writeFileSync(join(projectPath, '.gitignore'), assets.gitignoreContent());
709+
writeFileSync(join(projectPath, '.vscode', 'launch.json'), JSON.stringify(assets.debuggerConfigContent(), null, 2));
707710

708711
const dependencies = [
709712
`${answers.project_base}/config@1.0.0`,

‎.vscode/launch.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"skipFiles": [
2121
"<node_internals>/**"
2222
],
23-
"program": "${workspaceFolder}/microservices/user-service/src/controllers.js"
23+
"program": "${file}"
2424
}
2525
]
2626
}

0 commit comments

Comments
 (0)
Please sign in to comment.