Skip to content

Commit

Permalink
keeping the secret safe
Browse files Browse the repository at this point in the history
  • Loading branch information
dgmjr committed Oct 8, 2023
1 parent 734cad5 commit 095c4a4
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"author": "David G. Moore, Jr.",
"version": "0.2.1",
"configurations": [
{
"name": "Launch Delete GitHub Package Version",
"type": "node",
"cwd": "${workspaceFolder}/Scripts",
"autoAttachChildProcesses": true,
"nodeVersionHint": 20,
"request": "launch",
"preLaunchTask": "npm: build - Scripts",
"args": [
"-o",
"dgmjr-io",
"-i",
"@dgmjr/github-packages-push",
"--version",
"0.0.1",
"--type",
"npm",
"-k",
"@KeeShepherd(GitHub--dgmjr--pat--0--2024-Oct-08)"
],
"program": "js/delete-github-package-version.js",
"stopOnEntry": true
},
{
"name": "ts-node",
"type": "node",
"request": "launch",
"args": [
"${relativeFile}"
],
"runtimeArgs": [
"-r",
"ts-node/register"
],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
}
]
}

0 comments on commit 095c4a4

Please sign in to comment.