impcyber
impcyber
@ghost What about `btn` class, you may just add: `size: 'default'` in initialization options: ```javascript $('#wiki-content').wysihtml5({ size: 'default' }); ```
Same bug for `nestjs-typegoose` package: (https://github.com/doug-martin/nestjs-query/blob/master/packages/query-typegoose/src/services/reference-query.service.ts#L160) Must be updated following the migration guide: https://mongoosejs.com/docs/migrating_to_6.html#removed-execpopulate
an alternative way could be to use a `transformer` in uno config: ```ts transformers: [ { name: 'uno-astro-patch', enforce: 'pre', idFilter: id => !!id.match(/\.astro$/), async transform(code) { const matches =...