@unocss/core 0.11.6 → 0.12.0

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.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  declare class UnoGenerator {
2
2
  userConfig: UserConfig;
3
3
  defaults: UserConfigDefaults;
4
+ version: string;
4
5
  private _cache;
5
6
  config: ResolvedConfig;
6
7
  blocked: Set<string>;
package/dist/index.js CHANGED
@@ -304,11 +304,15 @@ function resolveConfig(userConfig = {}, defaults = {}) {
304
304
  };
305
305
  }
306
306
 
307
+ // package.json
308
+ var version = "0.12.0";
309
+
307
310
  // src/generator/index.ts
308
311
  var UnoGenerator = class {
309
312
  constructor(userConfig = {}, defaults = {}) {
310
313
  this.userConfig = userConfig;
311
314
  this.defaults = defaults;
315
+ this.version = version;
312
316
  this._cache = new Map();
313
317
  this.blocked = new Set();
314
318
  this.parentOrders = new Map();
package/dist/index.mjs CHANGED
@@ -267,11 +267,15 @@ function resolveConfig(userConfig = {}, defaults = {}) {
267
267
  };
268
268
  }
269
269
 
270
+ // package.json
271
+ var version = "0.12.0";
272
+
270
273
  // src/generator/index.ts
271
274
  var UnoGenerator = class {
272
275
  constructor(userConfig = {}, defaults = {}) {
273
276
  this.userConfig = userConfig;
274
277
  this.defaults = defaults;
278
+ this.version = version;
275
279
  this._cache = new Map();
276
280
  this.blocked = new Set();
277
281
  this.parentOrders = new Map();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unocss/core",
3
- "version": "0.11.6",
3
+ "version": "0.12.0",
4
4
  "description": "The instant on-demand Atomic CSS engine.",
5
5
  "keywords": [
6
6
  "unocss",