@lwrjs/tools 0.9.0-alpha.30 → 0.9.0-alpha.32

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.
@@ -108,7 +108,8 @@ function buildLwrServer(config) {
108
108
  }));
109
109
  build.onLoad({filter: /.*/, namespace: "lwr-server-build"}, async (args) => {
110
110
  const {appConfig, runtimeEnvironment, globalData} = await (0, import_config.loadConfig)(config, {
111
- skipDirNormalization: true
111
+ skipDirNormalization: true,
112
+ useStaticProviders: true
112
113
  });
113
114
  const hooks = await (0, import_modules.loadHooks)(appConfig);
114
115
  if (hooks.length) {
@@ -103,6 +103,7 @@ export default function buildLwrServer(config) {
103
103
  build.onLoad({ filter: /.*/, namespace: 'lwr-server-build' }, async (args) => {
104
104
  const { appConfig, runtimeEnvironment, globalData } = await loadConfig(config, {
105
105
  skipDirNormalization: true,
106
+ useStaticProviders: true,
106
107
  });
107
108
  // apply config hooks at build time
108
109
  const hooks = await loadHooks(appConfig);
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.9.0-alpha.30",
7
+ "version": "0.9.0-alpha.32",
8
8
  "homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
9
9
  "repository": {
10
10
  "type": "git",
@@ -32,11 +32,11 @@
32
32
  "package.cjs"
33
33
  ],
34
34
  "dependencies": {
35
- "@lwrjs/core": "0.9.0-alpha.30",
35
+ "@lwrjs/core": "0.9.0-alpha.32",
36
36
  "esbuild": "^0.17.4"
37
37
  },
38
38
  "devDependencies": {
39
- "@lwrjs/types": "0.9.0-alpha.30"
39
+ "@lwrjs/types": "0.9.0-alpha.32"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "lwc": "2.x"
@@ -44,5 +44,5 @@
44
44
  "engines": {
45
45
  "node": ">=16.0.0 <20"
46
46
  },
47
- "gitHead": "6e18768b8e47066c41ae0b792bf4aa766b0b784b"
47
+ "gitHead": "50e1f36c99ce2cd1ea8f6f1a2d3cf3967ca45de5"
48
48
  }