UNPKG

@twyr/announce

Version:

CLI Tool and NPM Library for announcing a release on Github / Gitlab / etc. and on NPM

42 lines (41 loc) 1.31 kB
{ // 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 "version": "0.2.0", "configurations": [ { "type": "pwa-node", "request": "launch", "name": "Announce Prepare", "skipFiles": [ "<node_internals>/**" ], "program": "${workspaceFolder}/bin/announce.js", "cwd": "${workspaceFolder}", "args": ["prepare"] }, { "type": "pwa-node", "request": "launch", "name": "Announce Release", "skipFiles": [ "<node_internals>/**" ], "program": "${workspaceFolder}/bin/announce.js", "cwd": "${workspaceFolder}", "args": ["release", "--no-release"] }, { "type": "pwa-node", "request": "launch", "name": "Announce Publish", "skipFiles": [ "<node_internals>/**" ], "program": "${workspaceFolder}/bin/announce.js", "cwd": "${workspaceFolder}", "args": ["publish", "--dry-run"] } ] }