@unocss/vite 0.47.0 → 0.47.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.mjs +1 -1
- package/package.json +7 -7
package/dist/index.cjs
CHANGED
|
@@ -71,7 +71,7 @@ function createContext(configOrPath, defaults = {}, extraConfigSources = [], res
|
|
|
71
71
|
const affectedModules = /* @__PURE__ */ new Set();
|
|
72
72
|
let ready = reloadConfig();
|
|
73
73
|
async function reloadConfig() {
|
|
74
|
-
const result = await config.loadConfig(root, configOrPath, extraConfigSources);
|
|
74
|
+
const result = await config.loadConfig(root, configOrPath, extraConfigSources, defaults);
|
|
75
75
|
resolveConfigResult(result);
|
|
76
76
|
rawConfig = result.config;
|
|
77
77
|
configFileList = result.sources;
|
package/dist/index.mjs
CHANGED
|
@@ -60,7 +60,7 @@ function createContext(configOrPath, defaults = {}, extraConfigSources = [], res
|
|
|
60
60
|
const affectedModules = /* @__PURE__ */ new Set();
|
|
61
61
|
let ready = reloadConfig();
|
|
62
62
|
async function reloadConfig() {
|
|
63
|
-
const result = await loadConfig(root, configOrPath, extraConfigSources);
|
|
63
|
+
const result = await loadConfig(root, configOrPath, extraConfigSources, defaults);
|
|
64
64
|
resolveConfigResult(result);
|
|
65
65
|
rawConfig = result.config;
|
|
66
66
|
configFileList = result.sources;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unocss/vite",
|
|
3
|
-
"version": "0.47.
|
|
3
|
+
"version": "0.47.2",
|
|
4
4
|
"description": "The Vite plugin for UnoCSS",
|
|
5
5
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,15 +44,15 @@
|
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@ampproject/remapping": "^2.2.0",
|
|
46
46
|
"@rollup/pluginutils": "^5.0.2",
|
|
47
|
-
"@unocss/config": "0.47.
|
|
48
|
-
"@unocss/core": "0.47.
|
|
49
|
-
"@unocss/inspector": "0.47.
|
|
50
|
-
"@unocss/scope": "0.47.
|
|
51
|
-
"@unocss/transformer-directives": "0.47.
|
|
47
|
+
"@unocss/config": "0.47.2",
|
|
48
|
+
"@unocss/core": "0.47.2",
|
|
49
|
+
"@unocss/inspector": "0.47.2",
|
|
50
|
+
"@unocss/scope": "0.47.2",
|
|
51
|
+
"@unocss/transformer-directives": "0.47.2",
|
|
52
52
|
"magic-string": "^0.26.7"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@unocss/shared-integration": "0.47.
|
|
55
|
+
"@unocss/shared-integration": "0.47.2",
|
|
56
56
|
"vite": "^3.2.4"
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|