insomnia/packages/insomnia-inso/bin/debug_inso
James Gatz 9bfbd5c6a8
add vscode launch config for debugging inso (#4161)
* add vscode launch config for debugging inso

* remove undeclared task
2021-11-01 16:13:30 +01:00

18 lines
540 B
JavaScript

#!/usr/bin/env node
/**
* This file is only used by the vscode launch config.
* It allows us to provide a free text prompt to the user to pass any inso extra arguments.
* https://github.com/microsoft/vscode/issues/83678
*/
let args = process.argv;
if (args.length >= 2 && require('inspector').url()) {
args = process.argv.reduce((allArgs, arg) => [...allArgs, ...arg.split(/\s/)], []);
}
// This should always be the same as bin/inso
global.require = require;
const insomniacli = require('../dist/index.js');
insomniacli.go(args);