Allows you to handle exceptions in ECMAScript/Typescript classes with only one annotation
Minimal React + Redux starter kit for experiments.
Inertia.js adapters for Node.js.
enkot/nativescript-here-maps 4
Cross-platform (iOS & Android) Nativescript plugin for the Here Maps API
enkot/article-CatchDecorator 3
Source code for article on bitsrc.io blog
Tiny masonry layout library.
InertifyCRM
enkot/data-science-from-scratch 1
code for Data Science From Scratch book
Unofficial Monobank desktop app
issue commentunocss/unocss
`mergeConfigs` doesn't add default preset
By the way, thats just thoughts, having presetUno()
explicitly is also fine :)
comment created time in a day
issue commentunocss/unocss
`mergeConfigs` doesn't add default preset
@zyyv That's correct. But if user, for example, have config like this, without explicitly defined presets
(presetUno
by default):
export default defineConfig({
theme: { ... }
})
and then will decide to merge another one, without explicitly defined presets
(presetUno
by default):
export default mergeConfigs([firstConfig, secondConfig])
the presetUno
will not be used by default any more, because mergeConfigs
produces empty array for presets
.
comment created time in a day
push eventenkot/unocss
commit sha 867fb2ab676524b937ceca61d794dd7b9cc53880
fix(core): merge theme in `mergeConfigs` (#2710)
commit sha 5c9fc9942fcb564acc063ac4d18926a2ae14a344
docs(example): fix vite-svelte-postcss example (#2701)
commit sha 40a6291256272f4c0636b34747b7068d186aa24a
fix(svelte-scoped): use files not folders for exports to fix jiti stub (#2715)
commit sha 4cdac214f9e4fa6df0fdae632cef26208b2875f4
feat(preset-icons): fallback on env does not support NodeLoader (#2693)
commit sha 5c681122673ec7f7863e4004c20f390ac206a62b
fix(preset-mini)!: fix pseudo variants generation order, close #2713 (#2714)
commit sha 3d0c60f03a73d90fa591bfc38814ec89c86d8ea2
feat!: normalize extraction `content` sources (#2719) Co-authored-by: sibbng <sibbngheid@gmail.com>
commit sha db339c3a06fa1107e4c2251b8e71eb53d3392bfe
feat(preset-mini): pseudo-class function for custom arguments (#2694)
commit sha 4e7a31fc4d5f54934647e01dd954087c98cfc9cf
chore: update snap
commit sha a8ad835b848ea9bd87bbfac66e6552ba083f641c
chore: update deps
commit sha fe86c0f6b5df5f4e20ceada1f71db32a632b394f
fix(svelte-scoped): global wrap preflights and safelist classes when used in component libraries (#2695) Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
commit sha 7afd0cb0e2c67685f369bd4e3268f6f721ab9ebb
docs: update integration page
commit sha 4228f4f9a35d0d4a25360e63de2c3b3b32b82836
chore: lint
commit sha 9645b3aa5217ca932906b1971fd32ba88765231c
chore: release v0.53.0
commit sha 12ab4d3971e3f7e56120db5f6e240938eddb2eba
chore: update vsce publish
commit sha d45bcb91690fae24b99d3accdf929135858a28df
fix(preset-wind): wrong output for animate-iteration-count (#2721)
push time in a day
push eventenkot/unocss
commit sha 867fb2ab676524b937ceca61d794dd7b9cc53880
fix(core): merge theme in `mergeConfigs` (#2710)
commit sha 5c9fc9942fcb564acc063ac4d18926a2ae14a344
docs(example): fix vite-svelte-postcss example (#2701)
commit sha 40a6291256272f4c0636b34747b7068d186aa24a
fix(svelte-scoped): use files not folders for exports to fix jiti stub (#2715)
commit sha 4cdac214f9e4fa6df0fdae632cef26208b2875f4
feat(preset-icons): fallback on env does not support NodeLoader (#2693)
commit sha 5c681122673ec7f7863e4004c20f390ac206a62b
fix(preset-mini)!: fix pseudo variants generation order, close #2713 (#2714)
commit sha 3d0c60f03a73d90fa591bfc38814ec89c86d8ea2
feat!: normalize extraction `content` sources (#2719) Co-authored-by: sibbng <sibbngheid@gmail.com>
commit sha db339c3a06fa1107e4c2251b8e71eb53d3392bfe
feat(preset-mini): pseudo-class function for custom arguments (#2694)
commit sha 4e7a31fc4d5f54934647e01dd954087c98cfc9cf
chore: update snap
commit sha a8ad835b848ea9bd87bbfac66e6552ba083f641c
chore: update deps
commit sha fe86c0f6b5df5f4e20ceada1f71db32a632b394f
fix(svelte-scoped): global wrap preflights and safelist classes when used in component libraries (#2695) Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
commit sha 7afd0cb0e2c67685f369bd4e3268f6f721ab9ebb
docs: update integration page
commit sha 4228f4f9a35d0d4a25360e63de2c3b3b32b82836
chore: lint
commit sha 9645b3aa5217ca932906b1971fd32ba88765231c
chore: release v0.53.0
commit sha 12ab4d3971e3f7e56120db5f6e240938eddb2eba
chore: update vsce publish
commit sha d45bcb91690fae24b99d3accdf929135858a28df
fix(preset-wind): wrong output for animate-iteration-count (#2721)
push time in a day
startedchakra-ui/ark
started time in 4 days
issue commentunocss/unocss
Add utilities usage info to UnoCSS Inspector
Hidden gems :) Thank you! Thats exactly what I need 👍
comment created time in 5 days
issue closedunocss/unocss
Uno generates redundant styles for each breakpoint for `{bp}:container`
UnoCSS version
0.52.7
Describe the bug
Currently if we add md:container
class, Uno will generate this styles:
@media (min-width: 768px){
.md\:container{max-width:768px;}
}
@media (min-width: 1024px){
.md\:container{max-width:1024px;}
}
@media (min-width: 1280px){
.md\:container{max-width:1280px;}
}
@media (min-width: 1536px){
.md\:container{max-width:1536px;}
}
But it is enought to have this one:
@media (min-width: 768px){
.md\:container{max-width:768px;}
}
Reproduction
https://unocss.dev/play/?html=DwEwlgbgBAxgNgQwM5ILwCIC2IBcMD2AdgC4JiECmATugHzAD04EtQA&config=JYWwDg9gTgLgBAbzgEwKYDNgDtUGEJaYDmANHGFKgM6owCqWEcAvnOlBCHAOQCujAYypVuAKFGoAHpFgoMAQ14AbeGkw58hYEQAUCZgEpRQA&css=Q&options=N4IgLgTghgdgzgMwPYQLYgFwKgGzgUwF8g
System Info
No response
Validations
- [X] Read the Contributing Guidelines.
- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
- [X] Check that this is a concrete bug. For Q&A open a GitHub Discussion or join our Discord Chat Server.
- [X] The provided reproduction is a minimal reproducible example of the bug.
closed time in 5 days
enkotissue commentunocss/unocss
`mergeConfigs` doesn't merge `theme`
@antfu Does it make sense to merge transformers also? Based on name
for example.
comment created time in 5 days
push eventenkot/unocss
commit sha f619960505a47c9b390f601541885bfe2a63b5db
fix(core): merge theme in `mergeConfig`
push time in 5 days
push eventenkot/unocss
commit sha fa3bcf37b37a5bbf74463b03498de473d3cdb5c3
chore: typo (#2594)
commit sha bba663625b4a9430ef82d3ff9f92b50963098cf8
feat(preset-mini): support `DEFAULT` type in colors (#2589)
commit sha 85ca097bb9b3eff7b3333adc37c71726ac4ce671
fix(transformer-variant-group): breakpoint alias (#2583)
commit sha 5d693ec7d2713a1421f8208cc87b6273b09405bf
feat(extractor-pug): accept Pug compile options (#2585)
commit sha 30348cb4effd3377c177e38c294a0eb3aa95aa68
feat(preset-mini): add `justify-stretch` rule (#2610)
commit sha ff1e50bd6f510e87a4bfd46e12e07666c1fe128e
feat(preset-mini, preset-wind): support without `var()` variable (#2618)
commit sha 6a8d6d2dc45a535a67433b678f8372d194ededa0
fix(preset-mini): allow to use hyphens and numbers in theme config without nesting (#2621)
commit sha aa6ff54cb7bd685c9486d19238be9da669dc5234
fix(core): don't splite code with `*` (#2625)
commit sha 74d0262e8c4403539b9f67cbdadedc01b04437df
chore: release v0.51.13
commit sha 154e3a9aaa5407b12cdc55b6b3529d8dfb3400d8
chore: enable ci permission
commit sha 9917c666676d13646b671204b039ff561fda2893
docs(preset-icons): update iconify links (#2631)
commit sha d22186d64f1a2d0478896214c99668dff3d6bb86
feat: added new preset link (#2633)
commit sha e580f93577699ac03b7c0b10986e0e24e8af2526
docs: update expected type in variants example (#2635)
commit sha 3358c0fc5e9a644bba34be8e89b5dd56b5cf0632
feat(svelte-scoped)!: introduce`@unocss/svelte-scoped` package (#2552)
commit sha e6b0d71ab5b3528931469f260600ca25c6452443
fix(astro): inject duplicate style (#2593)
commit sha df6894e0b39e8f357679feb59417535009aba184
chore: release v0.52.0
commit sha 83574b8502987a0534b35e6fabd365e9fdef035a
fix(preset-attributify): autocomplete with prefix (#2643)
commit sha 153d158e1caa8527f9d18dd2be195c95bfabc3fa
fix(svelte-scoped): @unocss/reset module resolution (#2644)
commit sha 2916a954e20536aeea377d3ece7b4011504582cb
chore: fix ci error, close #2647
commit sha 1c61face082449086443be992a8ccb2ea7b1b160
fix(astro): incorrect path and build failure (#2648)
push time in 5 days
push eventenkot/unocss
commit sha fa3bcf37b37a5bbf74463b03498de473d3cdb5c3
chore: typo (#2594)
commit sha bba663625b4a9430ef82d3ff9f92b50963098cf8
feat(preset-mini): support `DEFAULT` type in colors (#2589)
commit sha 85ca097bb9b3eff7b3333adc37c71726ac4ce671
fix(transformer-variant-group): breakpoint alias (#2583)
commit sha 5d693ec7d2713a1421f8208cc87b6273b09405bf
feat(extractor-pug): accept Pug compile options (#2585)
commit sha 30348cb4effd3377c177e38c294a0eb3aa95aa68
feat(preset-mini): add `justify-stretch` rule (#2610)
commit sha ff1e50bd6f510e87a4bfd46e12e07666c1fe128e
feat(preset-mini, preset-wind): support without `var()` variable (#2618)
commit sha 6a8d6d2dc45a535a67433b678f8372d194ededa0
fix(preset-mini): allow to use hyphens and numbers in theme config without nesting (#2621)
commit sha aa6ff54cb7bd685c9486d19238be9da669dc5234
fix(core): don't splite code with `*` (#2625)
commit sha 74d0262e8c4403539b9f67cbdadedc01b04437df
chore: release v0.51.13
commit sha 154e3a9aaa5407b12cdc55b6b3529d8dfb3400d8
chore: enable ci permission
commit sha 9917c666676d13646b671204b039ff561fda2893
docs(preset-icons): update iconify links (#2631)
commit sha d22186d64f1a2d0478896214c99668dff3d6bb86
feat: added new preset link (#2633)
commit sha e580f93577699ac03b7c0b10986e0e24e8af2526
docs: update expected type in variants example (#2635)
commit sha 3358c0fc5e9a644bba34be8e89b5dd56b5cf0632
feat(svelte-scoped)!: introduce`@unocss/svelte-scoped` package (#2552)
commit sha e6b0d71ab5b3528931469f260600ca25c6452443
fix(astro): inject duplicate style (#2593)
commit sha df6894e0b39e8f357679feb59417535009aba184
chore: release v0.52.0
commit sha 83574b8502987a0534b35e6fabd365e9fdef035a
fix(preset-attributify): autocomplete with prefix (#2643)
commit sha 153d158e1caa8527f9d18dd2be195c95bfabc3fa
fix(svelte-scoped): @unocss/reset module resolution (#2644)
commit sha 2916a954e20536aeea377d3ece7b4011504582cb
chore: fix ci error, close #2647
commit sha 1c61face082449086443be992a8ccb2ea7b1b160
fix(astro): incorrect path and build failure (#2648)
push time in 5 days
issue openedunocss/unocss
Uno generates redundant styles for each breakpoint for `{bp}:container`
UnoCSS version
0.52.7
Describe the bug
Currently if we add md:container
class, Uno will generate this styles:
@media (min-width: 768px){
.md\:container{max-width:768px;}
}
@media (min-width: 1024px){
.md\:container{max-width:1024px;}
}
@media (min-width: 1280px){
.md\:container{max-width:1280px;}
}
@media (min-width: 1536px){
.md\:container{max-width:1536px;}
}
But it is enought to have this one:
@media (min-width: 768px){
.md\:container{max-width:768px;}
}
Reproduction
https://unocss.dev/play/?html=DwEwlgbgBAxgNgQwM5ILwCIC2IBcMD2AdgC4JiECmATugHzAD04EtQA&config=JYWwDg9gTgLgBAbzgEwKYDNgDtUGEJaYDmANHGFKgM6owCqWEcAvnOlBCHAOQCujAYypVuAKFGoAHpFgoMAQ14AbeGkw58hYEQAUCZgEpRQA&css=Q&options=N4IgLgTghgdgzgMwPYQLYgFwKgGzgUwF8g
System Info
No response
Validations
- [X] Read the Contributing Guidelines.
- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
- [X] Check that this is a concrete bug. For Q&A open a GitHub Discussion or join our Discord Chat Server.
- [X] The provided reproduction is a minimal reproducible example of the bug.
created time in 5 days
issue commentunocss/unocss
`mergeConfigs` doesn't merge `theme`
Or it is supposed to have themes in presets in this case? 🤔
comment created time in 5 days
issue openedunocss/unocss
`mergeConfig` doesn't merge `theme`
UnoCSS version
0.52.7
Describe the bug
Trying to merge 2 configs:
export default defineConfig({
theme: {
colors: {
brand: {
'1': '#ddc099',
'2': '#cf780f',
'3': '#af231c',
'4': '#282321',
'5': '#fffcee',
'6': '#f8f9f7',
'7': '#fc6b00',
},
},
},
});
export default defineConfig({
theme: {
fontSize: {
micro: ['0.625rem', '1rem'],
xs: ['0.75rem', '1rem'],
sm: ['0.875rem', '1.125rem'],
base: ['1rem', '1.5rem'],
md: ['1.125rem', '1.5rem'],
lg: ['1.25rem', '1.5rem'],
xl: ['1.375rem', '2rem'],
},
},
});
But the result config looks like this:
{
"theme": {
"colors": {
"brand": {
"1": "#ddc099",
"2": "#cf780f",
"3": "#af231c",
"4": "#282321",
"5": "#fffcee",
"6": "#f8f9f7",
"7": "#fc6b00"
}
}
},
"presets": [],
"safelist": [],
"preprocess": [],
"postprocess": [],
"preflights": [],
"rules": [],
"variants": [],
"shortcuts": [],
"extractors": []
}
It doesn't contain fontSize
prop from second config.
Reproduction
https://stackblitz.com/edit/github-mxkbee-stgpe9?file=uno.config.ts
System Info
No response
Validations
- [X] Read the Contributing Guidelines.
- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
- [X] Check that this is a concrete bug. For Q&A open a GitHub Discussion or join our Discord Chat Server.
- [X] The provided reproduction is a minimal reproducible example of the bug.
created time in 5 days
issue openedunocss/unocss
`mergeConfigs` doesn't merge `theme` and `shortcuts`
UnoCSS version
0.52.7
Describe the bug
Trying to merge 2 configs, but selectors are not generated:
// uno.config.ts
import baseConfig from './base/uno.config';
import commerceConfig from './commerce/uno.config';
export default mergeConfigs([baseConfig, commerceConfig]);
// base/uno.config.ts
export default defineConfig({
theme: {
fontSize: {
micro: ['0.625rem', '1rem'],
xs: ['0.75rem', '1rem'],
sm: ['0.875rem', '1.125rem'],
base: ['1rem', '1.5rem'],
md: ['1.125rem', '1.5rem'],
lg: ['1.25rem', '1.5rem'],
xl: ['1.375rem', '2rem'],
},
},
});
// commerce/uno.config.ts
export default defineConfig({
shortcuts: {
'title-1': 'text-xl uppercase leading-4 lg:text-4xl',
'title-2': 'text-lg uppercase lg:text-2xl',
'title-3': 'text-md uppercase',
'title-4': 'text-base uppercase',
'title-5': 'text-sm uppercase',
},
});
Reproduction
https://stackblitz.com/edit/github-mxkbee-stgpe9?file=uno.config.ts
System Info
- Operating System: Linux
- Node Version: v16.14.2
- Nuxt Version: 3.5.2
- Nitro Version: 2.4.1
- Package Manager: npm@7.17.0
- Builder: vite
- User Config: extends
- Runtime Modules: -
- Build Modules: -
Validations
- [X] Read the Contributing Guidelines.
- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
- [X] Check that this is a concrete bug. For Q&A open a GitHub Discussion or join our Discord Chat Server.
- [X] The provided reproduction is a minimal reproducible example of the bug.
created time in 6 days
issue commentunocss/unocss
Add utilities usage info to UnoCSS Inspector
I have started working on it, but currently have one problem. I'm trying to get currentSelector
value to properly group selectors in Analyzer, but it looks like that parseToken
produces different result in different contexts.
Here I printed output of parseToken()
in generate()
function (packages/core/src/generator/index.ts
):
- Left -
nr interactive
- Right -
nr inspector
The RuleContext
is missing in the output from nr inspector
.
Can you please help/give some direction? For sure I'm missing something 🤔
Another option I see - is to call matchVariants()
for each selector in the packages/inspector/node/index.ts
. But it looks like redundant operations, because it already done in the generate()
.
comment created time in 7 days
issue openedunocss/unocss
Add utilities usage info to UnoCSS Inspector
Clear and concise description of the problem
In WindiCSS Analyzer it was very handy to see many times each utility is used, so developers can do additional optimisations (create shortcuts, use inline styles etc.).
Suggested solution
Add another "Analyzer" page (or tab to the "Overview" page) to UnoCSS Inspector with this info:
- top utilities
- utilities usage
- suggested shortcuts
- color palette
Alternative
No response
Additional context
No response
Validations
- [X] Read the Contributing Guidelines.
- [X] Read the
README.md
of using the package. - [X] Already used the Interactive Docs.
- [X] Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
created time in 9 days
issue openedunocss/unocss
Shortcut doesn't rewrite internal util in custom preset that extends `presetUno()`
UnoCSS version
0.51.13
Describe the bug
- Create "base" preset that extends
presetUno
- Add it to the config
- Try to add
container
shortcut to the "base" preset
Expected result:
container
has styles specified in the shortcut
Actual result:
container
still has styles from presetUno
It works if we specify shortcut directly in the defineConfig
.
Reproduction
https://uno.antfu.me/play/?html=DwEwlgbgBAxgNgQwM5ILwCIYHsB2AXBMHAUwCd0A%2BAKCilwFoRiBbBHEKAdqiKQPy5QAZgFc4cAJ6wRfLMzAAvBACM4xKsAD04CNSA&config=JYWwDg9gTgLgBAbzgEwKYDNgDtUGEJaYDmANChtqgApSoDOq8AvnOlBCHAOQCuWEAYzp0uAKFCRYiOGFoMYAVX5wWbDtz6DhY0QIJ14e2jXqM4AXnKYcJ%2BQAoEouHCwBDEKgBc3I6i4knGTlGOm8AbVlTRX47AEoAXQDnOgALaBgBHhhQxEDnPSwYV0ooby4QAA8AWlcsiDFnJgCmWNFRVArJeDR0WoAbboocfEJgIgdAyPkcsN9bRkTRFtEgA&css=Q&options=N4IgLgTghgdgzgMwPYQLYgFwKgGzgUwF8g
System Info
No response
Validations
- [X] Read the Contributing Guidelines.
- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
- [X] Check that this is a concrete bug. For Q&A open a GitHub Discussion or join our Discord Chat Server.
- [X] The provided reproduction is a minimal reproducible example of the bug.
created time in 17 days
pull request commentunjs/h3
feat(proxy): support `onResponse` callback
Hi @pi0, It would be great to merge this one. Or some more work should be done here?
comment created time in 22 days
startedantfu/ni
started time in a month
pull request commentdanielroe/nuxt-vitest
feat: option to replace happy-dom with jsdom
@antfu @danielroe Need help with tests. Trying to understand why some tests that use useRouter
/useRoute
are not passing for jsdom
:
https://github.com/danielroe/nuxt-vitest/blob/main/playground/tests/nuxt/index.spec.ts#L28
https://github.com/danielroe/nuxt-vitest/blob/main/playground/tests/nuxt/index.spec.ts#L37
comment created time in a month
push eventenkot/nuxt-vitest
commit sha dde56ebad7a2f60576874bc1a315dee176ff8261
chore(deps): update devdependency release-it to v15.10.1 (#123) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha 3c4cffce47afe3637faca51abf7e6c391e5e3843
chore(deps): update devdependency lint-staged to v13.2.1 (#124) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha 604a3a21522f1e7bb5aa9ab85ffa9bd78a9ff945
chore(deps): update devdependency eslint to v8.38.0 (#125) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha d865b7509476493d281d3d8173dce07cdf0c8f18
chore(deps): update pnpm to v8.2.0 (#126) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha 70de8d59569c1d4de5acd9f64b3b81b97e00067a
chore(deps): update test packages to v0.30.1 (#129) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha eb152f492e72f4ecfe5e9f5d1170b36edefbb0eb
fix(nuxt-vitest): inject vue plugins if missing (#130)
commit sha 060acd95e232536698870f001a7ee583608b494e
chore(deps): update devdependency unbuild to v1.2.1 (#131) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha 067c1a1d077e9bb2516919dbe9a133fc3af5c47f
chore(deps): update nuxt core (#120) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Roe <daniel@roe.dev>
commit sha a5e0920a8c424f699e4a795b8365a36c2bc58ff0
chore: release v0.6.10
commit sha 9a05b6664762a97d878a1377d4da01db5fc3214a
chore(deps): update pnpm to v8.3.1 (#139) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha ee00388e0d110af2e093560f35a3fb702179687f
chore(deps): update all linters (#141) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha e7db511b1d9e1ea1ed4c82debb56ccfbdbed5c57
chore(deps): update devdependency lint-staged to v13.2.2 (#143) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha 1894e316cdf7453949d31b93f10984e3592a74c5
chore(deps): update nuxt core to v3.4.3 (#140) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Roe <daniel@roe.dev>
commit sha 56396116f0bed2e14c186cb65a144c5fc27c50a4
test: update playground to 0.4.5 devtools
commit sha 18aebe53d8cbb0c50437ff4c1565eced1cddc7a8
chore(deps): update devdependency release-it to v15.10.2 (#146) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha 1ce3e0e49301e5f9fece54eb85f4bfcf51905477
fix(nuxt-vitest): unshift vue plugins in newer nuxts (#148)
commit sha 32a7648b6f2b1d51f830a6b413479e4dae30b808
chore: release v0.6.11
commit sha 16a3d32939ad219c43017d7376b53ccb13fb3332
style: lint
commit sha 156850e39a6a2fb38a2200b89060cc1858fbd983
fix: support awaiting nuxt app promises (#147)
commit sha 4c93deec2f0d110d637de7d0b1f04eac50f3b747
chore: release v0.6.12
push time in a month
push eventenkot/nuxt-vitest
commit sha dde56ebad7a2f60576874bc1a315dee176ff8261
chore(deps): update devdependency release-it to v15.10.1 (#123) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha 3c4cffce47afe3637faca51abf7e6c391e5e3843
chore(deps): update devdependency lint-staged to v13.2.1 (#124) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha 604a3a21522f1e7bb5aa9ab85ffa9bd78a9ff945
chore(deps): update devdependency eslint to v8.38.0 (#125) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha d865b7509476493d281d3d8173dce07cdf0c8f18
chore(deps): update pnpm to v8.2.0 (#126) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha 70de8d59569c1d4de5acd9f64b3b81b97e00067a
chore(deps): update test packages to v0.30.1 (#129) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha eb152f492e72f4ecfe5e9f5d1170b36edefbb0eb
fix(nuxt-vitest): inject vue plugins if missing (#130)
commit sha 060acd95e232536698870f001a7ee583608b494e
chore(deps): update devdependency unbuild to v1.2.1 (#131) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha 067c1a1d077e9bb2516919dbe9a133fc3af5c47f
chore(deps): update nuxt core (#120) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Roe <daniel@roe.dev>
commit sha a5e0920a8c424f699e4a795b8365a36c2bc58ff0
chore: release v0.6.10
commit sha 9a05b6664762a97d878a1377d4da01db5fc3214a
chore(deps): update pnpm to v8.3.1 (#139) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha ee00388e0d110af2e093560f35a3fb702179687f
chore(deps): update all linters (#141) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha e7db511b1d9e1ea1ed4c82debb56ccfbdbed5c57
chore(deps): update devdependency lint-staged to v13.2.2 (#143) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha 1894e316cdf7453949d31b93f10984e3592a74c5
chore(deps): update nuxt core to v3.4.3 (#140) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Roe <daniel@roe.dev>
commit sha 56396116f0bed2e14c186cb65a144c5fc27c50a4
test: update playground to 0.4.5 devtools
commit sha 18aebe53d8cbb0c50437ff4c1565eced1cddc7a8
chore(deps): update devdependency release-it to v15.10.2 (#146) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
commit sha 1ce3e0e49301e5f9fece54eb85f4bfcf51905477
fix(nuxt-vitest): unshift vue plugins in newer nuxts (#148)
commit sha 32a7648b6f2b1d51f830a6b413479e4dae30b808
chore: release v0.6.11
commit sha 16a3d32939ad219c43017d7376b53ccb13fb3332
style: lint
commit sha 156850e39a6a2fb38a2200b89060cc1858fbd983
fix: support awaiting nuxt app promises (#147)
commit sha 4c93deec2f0d110d637de7d0b1f04eac50f3b747
chore: release v0.6.12
push time in a month
pull request commentunocss/unocss
fix(transformer-variant-group): breakpoint alias
@zyyv Thanks!
comment created time in a month
issue commentunocss/unocss
`transformer-variant-group` doesn't work with `<`, `~` breakpoint aliases
@zyyv Why have you closed this? Based on the changelog, aliases are supported in Uno - https://github.com/unocss/unocss/releases/tag/v0.50.2.
comment created time in a month
pull request commentunocss/unocss
fix(transformer-variant-group): breakpoint alias
@zyyv But this feature is supported in Unocss - https://github.com/unocss/unocss/pull/2266, isn't it?
comment created time in a month
PR opened unocss/unocss
Fixes #2582
Not sure if there are caveats to this solution, but it solves the problem.
pr created time in a month
push eventenkot/unocss
commit sha 8f7da86ad1c30d9630ce72d8fa9265e43cc82fdf
fix(transformer-variant-group): breakpoint alias
push time in a month