lwr 0.22.13 → 0.23.0

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.
@@ -45,6 +45,7 @@ var PLATFORM_NS = ["lwr", "webruntime"];
45
45
  var LWC_REGEX = /^[\w-]+\/[\w-]+$/;
46
46
  var LWC_TRANSFORM_CONFIG = {
47
47
  experimentalDynamicComponent: {strictSpecifier: false},
48
+ dynamicImports: {strictSpecifier: false},
48
49
  enableDynamicComponents: true,
49
50
  enableScopedSlots: true
50
51
  };
@@ -16,8 +16,8 @@ const CAPABILITY_PRIVATE = 'Private'; // unexposed platform modules (eg: "lwr/ro
16
16
  const PLATFORM_NS = ['lwr', 'webruntime'];
17
17
  const LWC_REGEX = /^[\w-]+\/[\w-]+$/; // LWC component specifier format
18
18
  const LWC_TRANSFORM_CONFIG = {
19
- // pass to the LWC compiler
20
19
  experimentalDynamicComponent: { strictSpecifier: false },
20
+ dynamicImports: { strictSpecifier: false },
21
21
  enableDynamicComponents: true,
22
22
  enableScopedSlots: true,
23
23
  };
package/package.json CHANGED
@@ -16,7 +16,7 @@
16
16
  "bin": "bin/lwr.js",
17
17
  "type": "module",
18
18
  "types": "build/es/index.d.ts",
19
- "version": "0.22.13",
19
+ "version": "0.23.0",
20
20
  "module": "build/es/index.js",
21
21
  "main": "build/cjs/index.cjs",
22
22
  "files": [
@@ -39,15 +39,15 @@
39
39
  }
40
40
  },
41
41
  "dependencies": {
42
- "@lwrjs/api": "0.22.13",
43
- "@lwrjs/config": "0.22.13",
44
- "@lwrjs/core": "0.22.13",
45
- "@lwrjs/dev-proxy-server": "0.22.13",
46
- "@lwrjs/diagnostics": "0.22.13",
47
- "@lwrjs/lambda": "0.22.13",
48
- "@lwrjs/shared-utils": "0.22.13",
49
- "@lwrjs/static": "0.22.13",
50
- "@lwrjs/tools": "0.22.13",
42
+ "@lwrjs/api": "0.23.0",
43
+ "@lwrjs/config": "0.23.0",
44
+ "@lwrjs/core": "0.23.0",
45
+ "@lwrjs/dev-proxy-server": "0.23.0",
46
+ "@lwrjs/diagnostics": "0.23.0",
47
+ "@lwrjs/lambda": "0.23.0",
48
+ "@lwrjs/shared-utils": "0.23.0",
49
+ "@lwrjs/static": "0.23.0",
50
+ "@lwrjs/tools": "0.23.0",
51
51
  "chalk": "^5.3.0",
52
52
  "commander": "^10.0.0",
53
53
  "es-module-lexer": "^1.5.4",
@@ -57,7 +57,7 @@
57
57
  },
58
58
  "devDependencies": {
59
59
  "@commander-js/extra-typings": "^12.1.0",
60
- "@lwrjs/types": "0.22.13",
60
+ "@lwrjs/types": "0.23.0",
61
61
  "@types/xml2js": "^0.4.14",
62
62
  "jest": "29.7.0",
63
63
  "memfs": "^4.13.0",
@@ -70,5 +70,5 @@
70
70
  "engines": {
71
71
  "node": ">=22.0.0"
72
72
  },
73
- "gitHead": "0696ace9a947340156151fba686a029fbc7466bf"
73
+ "gitHead": "5de81558aa52fc9593a386d9f6d82532c61cd4c1"
74
74
  }