@intlayer/config 8.9.4 → 8.9.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/cjs/configFile/buildBrowserConfiguration.cjs +1 -1
- package/dist/cjs/defaultValues/editor.cjs +1 -1
- package/dist/cjs/defaultValues/editor.cjs.map +1 -1
- package/dist/esm/configFile/buildBrowserConfiguration.mjs +1 -1
- package/dist/esm/defaultValues/editor.mjs +1 -1
- package/dist/esm/defaultValues/editor.mjs.map +1 -1
- package/dist/types/defaultValues/editor.d.ts +1 -1
- package/package.json +4 -4
|
@@ -7,7 +7,7 @@ const CMS_URL = "https://app.intlayer.org";
|
|
|
7
7
|
const BACKEND_URL = "https://back.intlayer.org";
|
|
8
8
|
const PORT = 8e3;
|
|
9
9
|
const IS_ENABLED = false;
|
|
10
|
-
const LIVE_SYNC =
|
|
10
|
+
const LIVE_SYNC = false;
|
|
11
11
|
const DICTIONARY_PRIORITY_STRATEGY = "local_first";
|
|
12
12
|
const LIVE_SYNC_PORT = 4e3;
|
|
13
13
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"editor.cjs","names":[],"sources":["../../../src/defaultValues/editor.ts"],"sourcesContent":["export const APPLICATION_URL = undefined;\nexport const EDITOR_URL = 'http://localhost:8000';\nexport const CMS_URL = 'https://app.intlayer.org';\nexport const BACKEND_URL = 'https://back.intlayer.org';\nexport const PORT = 8000;\nexport const IS_ENABLED = false;\nexport const LIVE_SYNC =
|
|
1
|
+
{"version":3,"file":"editor.cjs","names":[],"sources":["../../../src/defaultValues/editor.ts"],"sourcesContent":["export const APPLICATION_URL = undefined;\nexport const EDITOR_URL = 'http://localhost:8000';\nexport const CMS_URL = 'https://app.intlayer.org';\nexport const BACKEND_URL = 'https://back.intlayer.org';\nexport const PORT = 8000;\nexport const IS_ENABLED = false;\nexport const LIVE_SYNC = false;\nexport const DICTIONARY_PRIORITY_STRATEGY = 'local_first';\nexport const LIVE_SYNC_PORT = 4000;\n"],"mappings":";;;AAAA,MAAa,kBAAkB;AAC/B,MAAa,aAAa;AAC1B,MAAa,UAAU;AACvB,MAAa,cAAc;AAC3B,MAAa,OAAO;AACpB,MAAa,aAAa;AAC1B,MAAa,YAAY;AACzB,MAAa,+BAA+B;AAC5C,MAAa,iBAAiB"}
|
|
@@ -5,7 +5,7 @@ const CMS_URL = "https://app.intlayer.org";
|
|
|
5
5
|
const BACKEND_URL = "https://back.intlayer.org";
|
|
6
6
|
const PORT = 8e3;
|
|
7
7
|
const IS_ENABLED = false;
|
|
8
|
-
const LIVE_SYNC =
|
|
8
|
+
const LIVE_SYNC = false;
|
|
9
9
|
const DICTIONARY_PRIORITY_STRATEGY = "local_first";
|
|
10
10
|
const LIVE_SYNC_PORT = 4e3;
|
|
11
11
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"editor.mjs","names":[],"sources":["../../../src/defaultValues/editor.ts"],"sourcesContent":["export const APPLICATION_URL = undefined;\nexport const EDITOR_URL = 'http://localhost:8000';\nexport const CMS_URL = 'https://app.intlayer.org';\nexport const BACKEND_URL = 'https://back.intlayer.org';\nexport const PORT = 8000;\nexport const IS_ENABLED = false;\nexport const LIVE_SYNC =
|
|
1
|
+
{"version":3,"file":"editor.mjs","names":[],"sources":["../../../src/defaultValues/editor.ts"],"sourcesContent":["export const APPLICATION_URL = undefined;\nexport const EDITOR_URL = 'http://localhost:8000';\nexport const CMS_URL = 'https://app.intlayer.org';\nexport const BACKEND_URL = 'https://back.intlayer.org';\nexport const PORT = 8000;\nexport const IS_ENABLED = false;\nexport const LIVE_SYNC = false;\nexport const DICTIONARY_PRIORITY_STRATEGY = 'local_first';\nexport const LIVE_SYNC_PORT = 4000;\n"],"mappings":";AAAA,MAAa,kBAAkB;AAC/B,MAAa,aAAa;AAC1B,MAAa,UAAU;AACvB,MAAa,cAAc;AAC3B,MAAa,OAAO;AACpB,MAAa,aAAa;AAC1B,MAAa,YAAY;AACzB,MAAa,+BAA+B;AAC5C,MAAa,iBAAiB"}
|
|
@@ -5,7 +5,7 @@ declare const CMS_URL = "https://app.intlayer.org";
|
|
|
5
5
|
declare const BACKEND_URL = "https://back.intlayer.org";
|
|
6
6
|
declare const PORT = 8000;
|
|
7
7
|
declare const IS_ENABLED = false;
|
|
8
|
-
declare const LIVE_SYNC =
|
|
8
|
+
declare const LIVE_SYNC = false;
|
|
9
9
|
declare const DICTIONARY_PRIORITY_STRATEGY = "local_first";
|
|
10
10
|
declare const LIVE_SYNC_PORT = 4000;
|
|
11
11
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/config",
|
|
3
|
-
"version": "8.9.
|
|
3
|
+
"version": "8.9.5",
|
|
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.9.
|
|
163
|
+
"@intlayer/types": "8.9.5",
|
|
164
164
|
"defu": "6.1.7",
|
|
165
165
|
"dotenv": "17.4.2",
|
|
166
166
|
"esbuild": "0.28.0",
|
|
@@ -168,14 +168,14 @@
|
|
|
168
168
|
"zod": "4.4.3"
|
|
169
169
|
},
|
|
170
170
|
"devDependencies": {
|
|
171
|
-
"@types/node": "25.
|
|
171
|
+
"@types/node": "25.7.0",
|
|
172
172
|
"@utils/ts-config": "1.0.4",
|
|
173
173
|
"@utils/ts-config-types": "1.0.4",
|
|
174
174
|
"@utils/tsdown-config": "1.0.4",
|
|
175
175
|
"rimraf": "6.1.3",
|
|
176
176
|
"tsdown": "0.22.00",
|
|
177
177
|
"typescript": "6.0.3",
|
|
178
|
-
"vitest": "4.1.
|
|
178
|
+
"vitest": "4.1.6"
|
|
179
179
|
},
|
|
180
180
|
"peerDependencies": {
|
|
181
181
|
"react": ">=16.0.0"
|