You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On rebuild, Bolt will delete the whole directory with the plugin and create it again. The thing is UXP Debugger expects .uxprc file to be located together with manifest.json and file content will change on every plugin load via UDT. So to fix it I would need to exclude this file from deletion.
UXP debugger now supports only inlined source maps. So in vite.config.ts would be sourcemap: mode && ["dev", "build"].includes(mode) ? "inline" : false, instead of sourcemap: mode && ["dev", "build"].includes(mode) ? true : false,
I think with these changes, it would provide a really good developer experience.
Hi, I created UXP Debugger for VSCode. https://marketplace.visualstudio.com/items?itemName=JaroslavBereza.uxpdebugger&ssr=false#overview
I tried it with Bolt and found out that if this should work by default there are few changes to be made:
.uxprcfile to be located together withmanifest.jsonand file content will change on every plugin load via UDT. So to fix it I would need to exclude this file from deletion.vite.config.tswould besourcemap: mode && ["dev", "build"].includes(mode) ? "inline" : false,instead ofsourcemap: mode && ["dev", "build"].includes(mode) ? true : false,I think with these changes, it would provide a really good developer experience.