Thomas Dekiere
Thomas Dekiere
The native input has a type=time attribute value but it requires you to always start witth a leading zero https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/time 01.15 A react component exist also but has the same...
I found [this](https://github.com/dima-bu/react-time-input) Demo page still contains a bug when typing "1:" results in "1::" but I've already made a pull request with the bug fix. Also doesn't allow dot...
We need some content here :) GDPR experts?
firebase web ui also accepts functions for privace page and tos page properties so it can be a 'redirectTo' function for both.
@Badisi if your commit convention allows you to use other types than `fix` or `feat` you can configure your nx release command to ignore certain types of commits when the...
@gkamperis Maybe these will help you? **option 1** ```json "serve": "npx nx run-many --target=serve --projects", ``` ```sh npm run serve -- my-app ``` **option 2** ``` "serve": "nx serve", ```...
> Going to v19.8.6 and trying again to v20 solved the issue for me. Thanks, that worked indeed! 🚀 ```sh npx nx migrate 19.8.6 npm install npx nx migrate --run-migrations...
And a minimal repro: https://github.com/thdk/nx-repro-nx-release-publish-target-missing Contains only a single project and configuration for `nx release` in `nx.json`. ```sh Node : 22.2.0 OS : darwin-arm64 Native Target : aarch64-macos npm :...
@JamesHenry thanks for spotting the issue! I actually used the interactive approach to generate the library and I haven't been prompted to tell if the generate library should be publishable...
Another workaround is to bundle all dependencies together with the source code bundle: ``` "options": { ... "bundle": true, "thirdParty": true, "generatePackageJson": false, "esbuildOptions": { ... } } ``` And...