Results 88 comments of shrpne

Can you please update to save the whole request object and I will be glad to merge it

As a workaround, you can use [`transformSource`](https://github.com/shrpne/vue-inline-svg#--transformsource) with some helper function which will add title tag

Released under [v2.0.0](https://github.com/shrpne/vue-inline-svg/releases/tag/v2.0.0)

Consider replacing title prop with slot accepting ``, ``, ``, etc. https://github.com/homeday-de/homeday-blocks/pull/481

For now, it uses options API like data, lifecycle hooks, and more. I believe there is no easy way to make it composition-api-only compatible. I guess inline-svg needs rewrite to...

I'm encountered same issue. `preserveModules: false` gives this ``` dist/ ├── index.js ├── second.js ``` `preserveModules: true` gives this ``` dist/ ├── src/ │ ├── index.js │ ├── second.js ├──...

I have solved it by `onCreateComponent` hook Example of hook to pass it to `generateApi` method: ``` const camelCase = require('camelcase'); function onCreateComponent(component) { if (component.rawTypeData.properties) { component.rawTypeData.properties = mapEntries(component.rawTypeData.properties,...

Looks like `config` is really needed for `modeInstances`. Because without it, `nuxt-press` continues importing blueprint themes like `docs/src/theme.css`. I have updated PR

If someone interested, I have managed to install it by making a branch for each corrupted package and moving it to the root, so it can be installed from Github...

Also, this problem affects contributing to `nuxt/press` on windows. I have tried to clone the repo and run examples, but Nuxt throw me an error during build. I believe there...