@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 +1 -0
- package/dist/index.js +4 -0
- package/dist/index.mjs +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
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();
|