Jurij Zahn

Results 8 comments of Jurij Zahn

Hi @doowb i was able to fix it by adding after https://github.com/enquirer/enquirer/blob/8d626c206733420637660ac7c2098d7de45e8590/lib/prompt.js#L138 this one ```javascript this.value = undefined ``` Maybe this can be a hint It looks loke the value...

This fixed the issue in my project ```bash npm un swagger-parser npm i @apidevtools/swagger-parser ``` ```ts import { bundle } from "@apidevtools/swagger-parser"; ```

I would like to have the option too, since safe breaks aws credentials file

Hi, i think you can disable it by setting parse to false in register call ```js register("foo-bar", { myProp: { value: 222, parse: false } }); ```

It seems like a change in the API. So why not adjust services.yaml and the corresponding call to reflect this? Or maybe here is a small parameter mismatch: [ATTR_ZONE_REPEATER =...

something like this could provide possibility to deal with with custom data types ```js register(C, { theprop: { parse: { value: (v) => new Date(v), // parse string date into...

Hi, not really, since many functions do not have return types, those are inferred during compile time, and by using the version of lib.dom used to compile against. By updating...

Hi, i have a similar question about tilde. In my config I am using regex: ``` { resolve: { alias: [{ find: /^~(.*)$/, replacement: "$1" }], }, } ``` Although...