Dave Nicolson

Results 89 comments of Dave Nicolson

I'm not sure our approaches are the same, it was a `bplist-parser` import and not a `bplist-creator` export. I see similar errors with version 1.4.0-0: ``` node_modules/simple-plist/dist/index.d.ts:1:10 - error TS2305:...

Hi @wollardj, can you please take a look at this?

Here is a reduced example: ```bash mkdir simple-plist-test cd simple-plist-test npm i typescript @types/node [email protected] echo "import * as plist from 'simple-plist'; console.log(plist)" > index.ts tsc index.ts ``` And applying...

I think the issue might relate to using ESM imports, I can reproduce the problem if I use `import` instead of `require`.

The issue I'm experiencing appears to relate to changes in version 1.3.1 where a [default export](https://github.com/wollardj/simple-plist/commit/26d93f4f6721d404af00e3152d77bf83e3b54043#diff-a2a171449d862fe29692ce031981047d7ab755ae7f84c707aef80701b3ea0c80L13) is incompatible with version 1.3.0 for ESM imports but still may be relevant to...

@realtril I don't have a solution, have you tried using CommonJS imports? For example: ``` const plist = require("simple-plist"); ```

@walkingbrad there are no default exports, according to the documentation you need to import named exports: ```typescript import * as plist from "simple-plist"; ``` With version 1.4.0 I see different...

Using `--status` works but it also includes the current versions of other languages, which isn't desirable: ``` mise [email protected] [email protected] [email protected] [email protected] [email protected] mise missing: [email protected] ``` It would be...

After switching from asdf to rtx, I immediately noticed terminal messages about missing versions. This wasn't how it functioned? I have this in my `config.fish` file but I still get...

Both lines as in `--log-level=warn` has no effect preventing the first line appearing in every session: ``` mise [email protected] [email protected] [email protected] [email protected] [email protected] mise missing: [email protected] ```