silgi 0.9.10 → 0.9.11
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/_chunks/index.mjs +1 -1
- package/dist/cli/loader.mjs +3 -0
- package/dist/cli/prepare.mjs +2 -2
- package/dist/meta/index.d.mts +1 -1
- package/dist/meta/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/_chunks/index.mjs
CHANGED
package/dist/cli/loader.mjs
CHANGED
package/dist/cli/prepare.mjs
CHANGED
|
@@ -1788,9 +1788,9 @@ function useCLIRuntimeConfig(silgi) {
|
|
|
1788
1788
|
const _inlineRuntimeConfig = silgi.options.runtimeConfig;
|
|
1789
1789
|
const envOptions = {
|
|
1790
1790
|
prefix: "NITRO_",
|
|
1791
|
-
altPrefix:
|
|
1791
|
+
altPrefix: process.env.NITRO_ENV_PREFIX ?? process.env.SILGI_ENV_PREFIX ?? "_",
|
|
1792
1792
|
silgiPrefix: "SILGI_",
|
|
1793
|
-
envExpansion:
|
|
1793
|
+
envExpansion: process.env.NITRO_ENV_EXPANSION ?? process.env.SILGI_ENV_EXPANSION ?? false,
|
|
1794
1794
|
...silgi.options.envOptions
|
|
1795
1795
|
};
|
|
1796
1796
|
silgi.hook("prepare:core.ts", (data) => {
|
package/dist/meta/index.d.mts
CHANGED
package/dist/meta/index.d.ts
CHANGED