@lwrjs/config 0.15.0-alpha.1 → 0.15.0-alpha.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.
@@ -96,7 +96,7 @@ function executeStartHooks(hooks, globalConfig, runtimeEnvironment, skipValidate
96
96
  };
97
97
  hook.onStart(onStartConfig);
98
98
  runtimeEnvironment.basePath = globalConfig.basePath = onStartConfig.basePath || "";
99
- globalConfig.i18n = onStartConfig.i18n;
99
+ runtimeEnvironment.i18n = globalConfig.i18n = onStartConfig.i18n;
100
100
  globalConfig.routes = onStartConfig.routes || [];
101
101
  globalConfig.errorRoutes = onStartConfig.errorRoutes || [];
102
102
  }
package/build/es/hooks.js CHANGED
@@ -98,7 +98,7 @@ export function executeStartHooks(hooks, globalConfig, runtimeEnvironment, skipV
98
98
  hook.onStart(onStartConfig);
99
99
  // copy updated values back to the globalConfig
100
100
  runtimeEnvironment.basePath = globalConfig.basePath = onStartConfig.basePath || '';
101
- globalConfig.i18n = onStartConfig.i18n;
101
+ runtimeEnvironment.i18n = globalConfig.i18n = onStartConfig.i18n;
102
102
  globalConfig.routes = (onStartConfig.routes || []);
103
103
  globalConfig.errorRoutes = (onStartConfig.errorRoutes || []);
104
104
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.15.0-alpha.1",
7
+ "version": "0.15.0-alpha.11",
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.15.0-alpha.1",
46
- "@lwrjs/instrumentation": "0.15.0-alpha.1",
47
- "@lwrjs/shared-utils": "0.15.0-alpha.1",
45
+ "@lwrjs/diagnostics": "0.15.0-alpha.11",
46
+ "@lwrjs/instrumentation": "0.15.0-alpha.11",
47
+ "@lwrjs/shared-utils": "0.15.0-alpha.11",
48
48
  "fs-extra": "^11.2.0",
49
49
  "jsonc-parser": "^3.3.1"
50
50
  },
51
51
  "devDependencies": {
52
- "@lwrjs/types": "0.15.0-alpha.1",
52
+ "@lwrjs/types": "0.15.0-alpha.11",
53
53
  "jest": "^26.6.3",
54
54
  "memfs": "^4.9.3",
55
55
  "ts-jest": "^26.5.6"
@@ -71,5 +71,5 @@
71
71
  "volta": {
72
72
  "extends": "../../../package.json"
73
73
  },
74
- "gitHead": "4547b6c6a7c9e9f33f829d4fdf2082caf4c9c44b"
74
+ "gitHead": "86f6f83ff30c750aab3b29448fa484d58918fb05"
75
75
  }