@unocss/core 0.41.1 → 0.41.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -608,6 +608,8 @@ interface UnocssPluginContext<Config extends UserConfig = UserConfig> {
|
|
|
608
608
|
tokens: Set<string>;
|
|
609
609
|
/** Map for all module's raw content */
|
|
610
610
|
modules: BetterMap<string, string>;
|
|
611
|
+
/** Module IDs that been affected by UnoCSS */
|
|
612
|
+
affectedModules: Set<string>;
|
|
611
613
|
filter: (code: string, id: string) => boolean;
|
|
612
614
|
extract: (code: string, id?: string) => Promise<void>;
|
|
613
615
|
reloadConfig: () => Promise<LoadConfigResult<Config>>;
|
package/dist/index.mjs
CHANGED