Joaquín Sánchez

Results 1398 comments of Joaquín Sánchez

> Feel free to raise a PR to fix the exports. I need to build the package and the tgz to check it, and it is failing when running `pnpm...

We need to add a few entries to "typesVersions" and add some missing `.js` extension in some module, for example in `src/date-picker-dialog/typings.ts` L3 and fix `app-datepicker/date-picker-input` (dts not being generated)...

> `exports` should be the definitive source for types exports This is when using Node16 module resolution, if using "Node" or "Node10" the subpackages exports dts files should be present...

> @userquin, could you kindly share the version you attempted to install? From what I can see, it's only v5 that has the typing issues that are confusing TypeScript. I'm...

> By referring to the above screenshot, you can see that it is clearly different from the screenshot in https://github.com/motss/app-datepicker/issues/222#issuecomment-1898572994. You can see that some do not have typing issues...

`showInstallPrompt` should be true when the service worker is installed and activated (no errors in the registration) and the browser supports the `beforeinstallprompt` event (right now only some Chromium based...

About workbox warnings, check https://vite-pwa-org.netlify.app/guide/faq.html#suppress-workbox-build-warnings-in-dev About router warnings, try update to latest nuxt 3.11.2

Add `registerType: 'autoUpdate'` to you PWA options, default value is `prompt`, and so a new sw version will be awaiting for user/client SKIP_WAITING message: - https://vite-pwa-org.netlify.app/guide/auto-update.html#plugin-configuration - https://vite-pwa-org.netlify.app/guide/prompt-for-update.html#plugin-configuration

`_nuxt` folder contains all client assets, by default PWA module will precache all assets, if you want to disable precaching then add `workbox.injectionPoint = undefined` (use object notation) in your...