Code Monkey home page Code Monkey logo

Comments (6)

acolytec3 avatar acolytec3 commented on July 28, 2024 1

Just to round this out in case anybody has a similar issue. For us, the solution was just to change our import for yargs from a default import of the sort:
import yargs from 'yargs'
to a namespace import:
import * as yargs from 'yargs'.

Thanks again for the help! Great project and we just added yargs autocomplete to our CLI tool as a bonus (since I didn't know it existed before).

from yargs-parser.

shadowspawn avatar shadowspawn commented on July 28, 2024

I was not able to reproduce this behaviour in a small test program. Both forms shows the help with an error Unknown argument: unknownOption.

In the linked issue, it mentions "unknown CLI params" and "unknown commands" and "unknown keyword arguments are being caught as expected but positional ones are not". To be clear, is the observed problem with an "option" starting with a - or --, or perhaps a non-option argument type?

from yargs-parser.

acolytec3 avatar acolytec3 commented on July 28, 2024

It's with what y'all call "options". Sorry for the lack of clarity. I'm wondering where things go awry because when I took just our yargs definition that starts here and copy it into a new script and try to run with the noted --datadir (from our issue), the unknownOption error appears. It's just when we run it with our compiled Typescript code where it doesn't show up.

from yargs-parser.

shadowspawn avatar shadowspawn commented on July 28, 2024

I managed to reproduce your problem using your tsconfig.json. The problem is the legacy yargs export does some tricky things, and TypeScript does some tricky things, and they don't always go together.

You can confirm by calling your broken program with unknown option and --help, and see if ----unknownOption appears in the help [sic].

node index.js --unknownOption unknownValue --help

See yargs/yargs#2010 (comment) for some research, which does not cover the settings you are using.

As a work-around, you could use a special TypeScript import style that has worked with all the tsconfig settings I have tried:

// import yargs from 'yargs'
import yargs = require("yargs");

See: https://www.typescriptlang.org/docs/handbook/modules.html#export--and-import--require

from yargs-parser.

acolytec3 avatar acolytec3 commented on July 28, 2024

Thank you for the guidance! I will research #2010 further and see if any of those options could work for us as I don't think the import = require... will work for us with our current build setup. Will circle back here and close things out once I find a solution.

from yargs-parser.

shadowspawn avatar shadowspawn commented on July 28, 2024

(Thanks for circling back.)

from yargs-parser.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.