Yusuf Aran
Yusuf Aran
Is there away to run **TypeScript** `bin` files? I used ```ts #!npx esr --cache ``` as shebang with ```json "name": "@comp/scripts", "bin": { "my-script": "./src/cli/my-script.ts" } ``` in the `package.json`....
Is there really no TypeScript support? Could you give us an update on this please?
I found out that when you use the URL generated from the [demo](https://lab.lepture.com/github-cards/) it works. URL from demo: ```html ``` URL from readme: ```html ```
To add another use case: My team is currently trying to migrate to AWS Pinpoint and we want to keep our Pinpoint endpoints up-to-date with our user data stored in...
Any update on this?
@peaklabs-dev I think this is not 100% handled. Local development seems to be still buggy for some apps. For example if you add a mongo db it will not work...
> I will check it. Are you using docker desktop? yes
I wanted to get my hands on mermaid and this was the first issue i noticed.. I think this is very crucial. In my case i want to put a...
Option 2 should be a sperate ticket. For Option 1 it might be better to move this feature from field level configuration to form level configuration: - field level configuration...
`useFluentForm` now returns `validateField` and `validateAllFields`, so this behaviour can be implemented by hand: ```js const { values, touched, validateField } = useFluentForm(config); useEffect(() => { if(touched.toDate) { validateField("toDate"); }...