@intlayer/config 8.7.5 → 8.7.6
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getAlias } from "../utils/alias.mjs";
|
|
2
2
|
import { getConfiguration } from "../configFile/getConfiguration.mjs";
|
|
3
|
-
import { getConfigEnvVars } from "../envVars/envVars.mjs";
|
|
4
3
|
import { BundleLogger } from "./logBundle.mjs";
|
|
4
|
+
import { getConfigEnvVars } from "../envVars/envVars.mjs";
|
|
5
5
|
import { isAbsolute, join, resolve } from "node:path";
|
|
6
6
|
import { mkdir, rm, writeFile } from "node:fs/promises";
|
|
7
7
|
import packageJSON from "@intlayer/types/package.json" with { type: "json" };
|
|
@@ -20,9 +20,9 @@ declare const cookiesAttributesSchema: z.ZodObject<{
|
|
|
20
20
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
21
21
|
httpOnly: z.ZodOptional<z.ZodBoolean>;
|
|
22
22
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
23
|
-
none: "none";
|
|
24
23
|
strict: "strict";
|
|
25
24
|
lax: "lax";
|
|
25
|
+
none: "none";
|
|
26
26
|
}>>;
|
|
27
27
|
expires: z.ZodOptional<z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>>;
|
|
28
28
|
}, z.core.$strip>;
|
|
@@ -47,9 +47,9 @@ declare const storageSchema: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodEnum
|
|
|
47
47
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
48
48
|
httpOnly: z.ZodOptional<z.ZodBoolean>;
|
|
49
49
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
50
|
-
none: "none";
|
|
51
50
|
strict: "strict";
|
|
52
51
|
lax: "lax";
|
|
52
|
+
none: "none";
|
|
53
53
|
}>>;
|
|
54
54
|
expires: z.ZodOptional<z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>>;
|
|
55
55
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -72,9 +72,9 @@ declare const storageSchema: z.ZodUnion<readonly [z.ZodLiteral<false>, z.ZodEnum
|
|
|
72
72
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
73
73
|
httpOnly: z.ZodOptional<z.ZodBoolean>;
|
|
74
74
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
75
|
-
none: "none";
|
|
76
75
|
strict: "strict";
|
|
77
76
|
lax: "lax";
|
|
77
|
+
none: "none";
|
|
78
78
|
}>>;
|
|
79
79
|
expires: z.ZodOptional<z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>>;
|
|
80
80
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -155,9 +155,9 @@ declare const routingSchema: z.ZodObject<{
|
|
|
155
155
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
156
156
|
httpOnly: z.ZodOptional<z.ZodBoolean>;
|
|
157
157
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
158
|
-
none: "none";
|
|
159
158
|
strict: "strict";
|
|
160
159
|
lax: "lax";
|
|
160
|
+
none: "none";
|
|
161
161
|
}>>;
|
|
162
162
|
expires: z.ZodOptional<z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>>;
|
|
163
163
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -180,9 +180,9 @@ declare const routingSchema: z.ZodObject<{
|
|
|
180
180
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
181
181
|
httpOnly: z.ZodOptional<z.ZodBoolean>;
|
|
182
182
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
183
|
-
none: "none";
|
|
184
183
|
strict: "strict";
|
|
185
184
|
lax: "lax";
|
|
185
|
+
none: "none";
|
|
186
186
|
}>>;
|
|
187
187
|
expires: z.ZodOptional<z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>>;
|
|
188
188
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -272,8 +272,8 @@ declare const buildSchema: z.ZodObject<{
|
|
|
272
272
|
}>>;
|
|
273
273
|
traversePattern: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
274
274
|
outputFormat: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
275
|
-
cjs: "cjs";
|
|
276
275
|
esm: "esm";
|
|
276
|
+
cjs: "cjs";
|
|
277
277
|
}>>>;
|
|
278
278
|
cache: z.ZodOptional<z.ZodBoolean>;
|
|
279
279
|
require: z.ZodOptional<z.ZodUnknown>;
|
|
@@ -350,9 +350,9 @@ declare const intlayerConfigSchema: z.ZodObject<{
|
|
|
350
350
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
351
351
|
httpOnly: z.ZodOptional<z.ZodBoolean>;
|
|
352
352
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
353
|
-
none: "none";
|
|
354
353
|
strict: "strict";
|
|
355
354
|
lax: "lax";
|
|
355
|
+
none: "none";
|
|
356
356
|
}>>;
|
|
357
357
|
expires: z.ZodOptional<z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>>;
|
|
358
358
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -375,9 +375,9 @@ declare const intlayerConfigSchema: z.ZodObject<{
|
|
|
375
375
|
secure: z.ZodOptional<z.ZodBoolean>;
|
|
376
376
|
httpOnly: z.ZodOptional<z.ZodBoolean>;
|
|
377
377
|
sameSite: z.ZodOptional<z.ZodEnum<{
|
|
378
|
-
none: "none";
|
|
379
378
|
strict: "strict";
|
|
380
379
|
lax: "lax";
|
|
380
|
+
none: "none";
|
|
381
381
|
}>>;
|
|
382
382
|
expires: z.ZodOptional<z.ZodUnion<readonly [z.ZodDate, z.ZodNumber]>>;
|
|
383
383
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -467,8 +467,8 @@ declare const intlayerConfigSchema: z.ZodObject<{
|
|
|
467
467
|
}>>;
|
|
468
468
|
traversePattern: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
469
469
|
outputFormat: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
470
|
-
cjs: "cjs";
|
|
471
470
|
esm: "esm";
|
|
471
|
+
cjs: "cjs";
|
|
472
472
|
}>>>;
|
|
473
473
|
cache: z.ZodOptional<z.ZodBoolean>;
|
|
474
474
|
require: z.ZodOptional<z.ZodUnknown>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/config",
|
|
3
|
-
"version": "8.7.
|
|
3
|
+
"version": "8.7.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.",
|
|
6
6
|
"keywords": [
|
|
@@ -160,7 +160,7 @@
|
|
|
160
160
|
"typecheck": "tsc --noEmit --project tsconfig.types.json"
|
|
161
161
|
},
|
|
162
162
|
"dependencies": {
|
|
163
|
-
"@intlayer/types": "8.7.
|
|
163
|
+
"@intlayer/types": "8.7.6",
|
|
164
164
|
"defu": "6.1.7",
|
|
165
165
|
"dotenv": "17.4.2",
|
|
166
166
|
"esbuild": "0.27.4",
|