This repository was archived by the owner on Jul 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 10 files changed +13
-13
lines changed
examples/feature-apps/unocss Expand file tree Collapse file tree 10 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 4
4
< head >
5
5
< meta charset ="UTF-8 ">
6
6
< meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
7
- < link rel ="stylesheet " href ="https://esm.sh/@unocss/reset@0.32.12 /tailwind.css ">
7
+ < link rel ="stylesheet " href ="https://esm.sh/@unocss/reset@0.33.2 /tailwind.css ">
8
8
< style >
9
9
# root {
10
10
position : relative;
Original file line number Diff line number Diff line change 2
2
* Provides Attributify Mode to other presets and rules.
3
3
* https://github.com/unocss/unocss/tree/main/packages/preset-attributify
4
4
*/
5
- export { default } from "https://esm.sh/@unocss/preset-attributify@0.32.12 " ;
5
+ export { default } from "https://esm.sh/@unocss/preset-attributify@0.33.2 " ;
Original file line number Diff line number Diff line change 2
2
* Use any icon as a class utility.
3
3
* https://github.com/unocss/unocss/tree/main/packages/preset-icons
4
4
*/
5
- export { default } from "https://esm.sh/@unocss/preset-icons@0.32.12 ?no-require" ;
5
+ export { default } from "https://esm.sh/@unocss/preset-icons@0.33.2 ?no-require" ;
Original file line number Diff line number Diff line change 2
2
* The minimal but essential rules and variants.
3
3
* https://github.com/unocss/unocss/tree/main/packages/preset-mini
4
4
*/
5
- export { default } from "https://esm.sh/@unocss/preset-mini@0.32.12 " ;
5
+ export { default } from "https://esm.sh/@unocss/preset-mini@0.33.2 " ;
Original file line number Diff line number Diff line change 2
2
* The typography preset.
3
3
* https://github.com/unocss/unocss/tree/main/packages/preset-typography
4
4
*/
5
- export { default } from "https://esm.sh/@unocss/preset-typography@0.32.12 " ;
5
+ export { default } from "https://esm.sh/@unocss/preset-typography@0.33.2 " ;
Original file line number Diff line number Diff line change 2
2
* The default preset (right now it's equivalent to @unocss/preset-wind).
3
3
* https://github.com/unocss/unocss/tree/main/packages/preset-uno
4
4
*/
5
- export { default } from "https://esm.sh/@unocss/preset-uno@0.32.12 " ;
5
+ export { default } from "https://esm.sh/@unocss/preset-uno@0.33.2 " ;
Original file line number Diff line number Diff line change 2
2
* Web fonts at ease.
3
3
* https://github.com/unocss/unocss/tree/main/packages/preset-web-fonts
4
4
*/
5
- export { default } from "https://esm.sh/@unocss/preset-web-fonts@0.32.12 " ;
5
+ export { default } from "https://esm.sh/@unocss/preset-web-fonts@0.33.2 " ;
Original file line number Diff line number Diff line change 2
2
* Tailwind / Windi CSS compact preset.
3
3
* https://github.com/unocss/unocss/tree/main/packages/preset-wind
4
4
*/
5
- export { default } from "https://esm.sh/@unocss/preset-wind@0.32.12 " ;
5
+ export { default } from "https://esm.sh/@unocss/preset-wind@0.33.2 " ;
Original file line number Diff line number Diff line change 1
1
import { basename , dirname , globToRegExp , join } from "https://deno.land/[email protected] /path/mod.ts" ;
2
2
import { JSONC } from "https://deno.land/x/[email protected] /src/jsonc.ts" ;
3
- import { createGenerator , type UnoGenerator } from "https://esm.sh/@unocss/core@0.32.12 " ;
3
+ import { createGenerator , type UnoGenerator } from "https://esm.sh/@unocss/core@0.33.2 " ;
4
4
import { findFile } from "../lib/fs.ts" ;
5
5
import log from "../lib/log.ts" ;
6
6
import util from "../lib/util.ts" ;
Original file line number Diff line number Diff line change 1
- import type { UserConfig as UnoConfig } from "https://esm.sh/@unocss/core@0.32.12 " ;
1
+ import type { UserConfig as UnoConfig } from "https://esm.sh/@unocss/core@0.33.2 " ;
2
2
3
3
export type AlephConfig = {
4
4
/** The build options for `build` command. */
@@ -56,7 +56,7 @@ export type JSXConfig = {
56
56
57
57
export type ModuleLoader = {
58
58
test ( pathname : string ) : boolean ;
59
- load ( pathname : string , env : ModuleLoaderEnv ) : Promise < ModuleLoaderContent > | ModuleLoaderContent ;
59
+ load ( pathname : string , env : ModuleLoaderEnv ) : Promise < ModuleLoaderOutput > | ModuleLoaderOutput ;
60
60
} ;
61
61
62
62
export type ModuleLoaderEnv = {
@@ -65,11 +65,11 @@ export type ModuleLoaderEnv = {
65
65
ssr ?: boolean ;
66
66
} ;
67
67
68
- export type ModuleLoaderContent = {
68
+ export type ModuleLoaderOutput = {
69
69
code : string ;
70
70
inlineCSS ?: string ;
71
- atomicCSS ?: boolean ;
72
71
lang ?: "js" | "jsx" | "ts" | "tsx" | "css" ;
72
+ isTemplateLanguage ?: boolean ;
73
73
map ?: string ;
74
74
} ;
75
75
You can’t perform that action at this time.
0 commit comments