nuxt-site-config-kit 1.5.3 → 1.5.5
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 +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -94,7 +94,8 @@ async function initSiteConfig(nuxt = kit.tryUseNuxt()) {
|
|
|
94
94
|
if (typeof curStack.indexable === "undefined") {
|
|
95
95
|
siteConfig.push({
|
|
96
96
|
_context: "computed-env",
|
|
97
|
-
_priority:
|
|
97
|
+
_priority: -4,
|
|
98
|
+
// allow overriding from the module
|
|
98
99
|
indexable: curStack.env === "production"
|
|
99
100
|
});
|
|
100
101
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -92,7 +92,8 @@ async function initSiteConfig(nuxt = tryUseNuxt()) {
|
|
|
92
92
|
if (typeof curStack.indexable === "undefined") {
|
|
93
93
|
siteConfig.push({
|
|
94
94
|
_context: "computed-env",
|
|
95
|
-
_priority:
|
|
95
|
+
_priority: -4,
|
|
96
|
+
// allow overriding from the module
|
|
96
97
|
indexable: curStack.env === "production"
|
|
97
98
|
});
|
|
98
99
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nuxt-site-config-kit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.5",
|
|
5
5
|
"description": "Shared site configuration build-time utilities for Nuxt 3 modules.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"funding": "https://github.com/sponsors/harlan-zw",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@nuxt/kit": "^3.
|
|
31
|
-
"@nuxt/schema": "^3.
|
|
30
|
+
"@nuxt/kit": "^3.8.0",
|
|
31
|
+
"@nuxt/schema": "^3.8.0",
|
|
32
32
|
"pkg-types": "^1.0.3",
|
|
33
33
|
"std-env": "^3.4.3",
|
|
34
34
|
"ufo": "^1.3.1",
|
|
35
|
-
"site-config-stack": "1.5.
|
|
35
|
+
"site-config-stack": "1.5.5"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"lint": "eslint . --fix",
|