@unocss/config 0.14.3 → 0.15.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.cjs CHANGED
@@ -64,7 +64,5 @@ function loadConfig(dirOrPath) {
64
64
  return createConfigLoader(dirOrPath)();
65
65
  }
66
66
 
67
- exports.LoadConfigResult = unconfig.LoadConfigResult;
68
- exports.LoadConfigSource = unconfig.LoadConfigSource;
69
67
  exports.createConfigLoader = createConfigLoader;
70
68
  exports.loadConfig = loadConfig;
package/dist/index.mjs CHANGED
@@ -1,7 +1,6 @@
1
1
  import { resolve, dirname } from 'path';
2
2
  import fs from 'fs';
3
3
  import { createConfigLoader as createConfigLoader$1 } from 'unconfig';
4
- export { LoadConfigResult, LoadConfigSource } from 'unconfig';
5
4
 
6
5
  function createConfigLoader(configOrPath = process.cwd(), extraConfigSources = []) {
7
6
  let inlineConfig = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unocss/config",
3
- "version": "0.14.3",
3
+ "version": "0.15.0",
4
4
  "description": "Config loader for UnoCSS",
5
5
  "keywords": [],
6
6
  "homepage": "https://github.com/antfu/unocss/tree/main/packages/config#readme",
@@ -32,7 +32,7 @@
32
32
  "node": ">=14"
33
33
  },
34
34
  "dependencies": {
35
- "@unocss/core": "0.14.3",
35
+ "@unocss/core": "0.15.0",
36
36
  "unconfig": "^0.2.2"
37
37
  },
38
38
  "scripts": {