@lwrjs/config 0.19.0-alpha.4 → 0.19.0-alpha.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.
- package/build/cjs/defaults.cjs +2 -2
- package/build/es/defaults.d.ts +2 -2
- package/build/es/defaults.js +2 -2
- package/package.json +6 -6
package/build/cjs/defaults.cjs
CHANGED
|
@@ -44,8 +44,8 @@ __export(exports, {
|
|
|
44
44
|
var import_shared_utils = __toModule(require("@lwrjs/shared-utils"));
|
|
45
45
|
var import_runtime_config = __toModule(require("./runtime-config.cjs"));
|
|
46
46
|
var import_package = __toModule(require("@lwrjs/config/package"));
|
|
47
|
-
var MIN_LWR_VERSION = "0.
|
|
48
|
-
var MIN_LWC_VERSION = "
|
|
47
|
+
var MIN_LWR_VERSION = "0.13.0";
|
|
48
|
+
var MIN_LWC_VERSION = "7.0.0";
|
|
49
49
|
var PORT = process.env.PORT ? parseInt(process.env.PORT, 10) : 3e3;
|
|
50
50
|
var MODE = process.env.MODE || "prod";
|
|
51
51
|
var DEFAULT_BASE_PATH = "";
|
package/build/es/defaults.d.ts
CHANGED
|
@@ -5,14 +5,14 @@ import type { BundleConfig, LwrGlobalConfig, LwrRoute, NormalizedLwrAppBootstrap
|
|
|
5
5
|
* Anytime we believe we are checking in a breaking change, the required version should be updated
|
|
6
6
|
* manually for all routes to continue functioning properly.
|
|
7
7
|
*/
|
|
8
|
-
export declare const MIN_LWR_VERSION = "0.
|
|
8
|
+
export declare const MIN_LWR_VERSION = "0.13.0";
|
|
9
9
|
/**
|
|
10
10
|
* MIN_LWC_VERSION
|
|
11
11
|
* Minimum LWC version required for the routes to function properly.
|
|
12
12
|
* Anytime we believe we are checking in a breaking change, the required version should be updated
|
|
13
13
|
* manually for all routes to continue functioning properly.
|
|
14
14
|
*/
|
|
15
|
-
export declare const MIN_LWC_VERSION = "
|
|
15
|
+
export declare const MIN_LWC_VERSION = "7.0.0";
|
|
16
16
|
export declare const DEFAULT_LWR_CONFIG_JSON = "$rootDir/lwr.config.json";
|
|
17
17
|
export declare const DEFAULT_GENERATOR_CONFIG: StaticSiteGenerator;
|
|
18
18
|
export declare const DEFAULT_ROOT_DIR: string;
|
package/build/es/defaults.js
CHANGED
|
@@ -7,14 +7,14 @@ import { lwrVersion as LWR_VERSION, lwcVersion as LWC_VERSION } from '@lwrjs/con
|
|
|
7
7
|
* Anytime we believe we are checking in a breaking change, the required version should be updated
|
|
8
8
|
* manually for all routes to continue functioning properly.
|
|
9
9
|
*/
|
|
10
|
-
export const MIN_LWR_VERSION = '0.
|
|
10
|
+
export const MIN_LWR_VERSION = '0.13.0';
|
|
11
11
|
/**
|
|
12
12
|
* MIN_LWC_VERSION
|
|
13
13
|
* Minimum LWC version required for the routes to function properly.
|
|
14
14
|
* Anytime we believe we are checking in a breaking change, the required version should be updated
|
|
15
15
|
* manually for all routes to continue functioning properly.
|
|
16
16
|
*/
|
|
17
|
-
export const MIN_LWC_VERSION = '
|
|
17
|
+
export const MIN_LWC_VERSION = '7.0.0';
|
|
18
18
|
const PORT = process.env.PORT ? parseInt(process.env.PORT, 10) : 3000;
|
|
19
19
|
const MODE = process.env.MODE || 'prod';
|
|
20
20
|
const DEFAULT_BASE_PATH = '';
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.19.0-alpha.
|
|
7
|
+
"version": "0.19.0-alpha.6",
|
|
8
8
|
"homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
"test": "jest"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@lwrjs/diagnostics": "0.19.0-alpha.
|
|
46
|
-
"@lwrjs/instrumentation": "0.19.0-alpha.
|
|
47
|
-
"@lwrjs/shared-utils": "0.19.0-alpha.
|
|
45
|
+
"@lwrjs/diagnostics": "0.19.0-alpha.6",
|
|
46
|
+
"@lwrjs/instrumentation": "0.19.0-alpha.6",
|
|
47
|
+
"@lwrjs/shared-utils": "0.19.0-alpha.6",
|
|
48
48
|
"fs-extra": "^11.2.0",
|
|
49
49
|
"jsonc-parser": "^3.3.1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@lwrjs/types": "0.19.0-alpha.
|
|
52
|
+
"@lwrjs/types": "0.19.0-alpha.6",
|
|
53
53
|
"jest": "29.7.0",
|
|
54
54
|
"memfs": "^4.13.0",
|
|
55
55
|
"ts-jest": "^29.2.6"
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"volta": {
|
|
72
72
|
"extends": "../../../package.json"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "25933a335c7f2f6ebc39381feda5f47e07e43faa"
|
|
75
75
|
}
|