-
**TypeScript Version:** 3.1.1
**Search Terms:** __importStar tslib
**Code**
a.ts:
```ts
import('b').then(b => console.log(b));
```
compile with
```
tsc a.ts --esModuleInterop --impor…
-
My app is complete. /cc @codepathreview @codepath
Please review.
Wanted to mention that saving to --logfile did not work. I had to change it to some other name (--logfile1) to make it work. (You may…
-
Ok, so #100 had good intentions, but it turns out that it's a little more frustrating to deal with things now that you have to wrap things in quotes. I don't know about anyone else, but it's been anno…
-
Currently args are split on spaces. This means that the user cannot specify a nickname unless it is all one word, or uses spacers like underlines or other non-letter characters.
Proposal: a new tok…
-
Example:
```js
const cliuiCJS = require('cliui')
import('cliui').then(({ default: cliuiESM }) => {
const uiCJS = cliuiCJS({})
const uiESM = cliuiESM({})
const text = `usage: git tag [-…
-
I am trying to call [argv.showHelp](https://github.com/indexzero/nconf/blob/master/lib/nconf/stores/argv.js#L66) in order to display which arguments are available to the user.
However, if I do `nco…
-
Calling this example code:
```javascript
const yargsParser = require('yargs-parser');
const argv = yargsParser(process.argv.slice(2), {
array: ['arr'],
});
console.log(JSON.stringify(argv, …
FM-96 updated
5 years ago
-
Several CLI options for the program are broken. Need to figure out how to alias yargs "dot" option notation for objects/properties.
-
## I'm submitting a...
- [x] Bug report
## Current behavior
High vulnerability
## Expected behavior
No vulnerability
## Solution
Should upgrade yargs dependency to 16
-
Suppose you want to pass a string to an option and it happens that this string starts with `--a` (or any `--`). Obviously,
```
echo "console.log(require('yargs').option('test').argv)" | node - --tes…