@lwrjs/tools 0.12.0-alpha.7 → 0.12.0-alpha.9

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,7 +45,7 @@ function generateLwrEntry() {
45
45
  `import { createHandler } from '@lwrjs/lambda';`,
46
46
  `import * as build from './lwr.build.js';`,
47
47
  `const handler = createHandler(build);`,
48
- `export { handler as get };`
48
+ `export { handler as get, build as MRT_APP_CONFIG };`
49
49
  ].join("\n"),
50
50
  loader: "ts",
51
51
  resolveDir: import_path.default.dirname(args.path)
@@ -34,7 +34,7 @@ export default function generateLwrEntry() {
34
34
  // initialization.
35
35
  `const handler = createHandler(build);`,
36
36
  // MRT expects the handler to be a named export: `get`
37
- `export { handler as get };`,
37
+ `export { handler as get, build as MRT_APP_CONFIG };`,
38
38
  ].join('\n'),
39
39
  loader: 'ts',
40
40
  resolveDir: path.dirname(args.path),
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.12.0-alpha.7",
7
+ "version": "0.12.0-alpha.9",
8
8
  "homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
9
9
  "repository": {
10
10
  "type": "git",
@@ -32,15 +32,15 @@
32
32
  "package.cjs"
33
33
  ],
34
34
  "dependencies": {
35
- "@lwrjs/config": "0.12.0-alpha.7",
36
- "@lwrjs/core": "0.12.0-alpha.7",
37
- "@lwrjs/diagnostics": "0.12.0-alpha.7",
38
- "@lwrjs/shared-utils": "0.12.0-alpha.7",
35
+ "@lwrjs/config": "0.12.0-alpha.9",
36
+ "@lwrjs/core": "0.12.0-alpha.9",
37
+ "@lwrjs/diagnostics": "0.12.0-alpha.9",
38
+ "@lwrjs/shared-utils": "0.12.0-alpha.9",
39
39
  "esbuild": "^0.17.4",
40
40
  "fs-extra": "^11.1.1"
41
41
  },
42
42
  "devDependencies": {
43
- "@lwrjs/types": "0.12.0-alpha.7",
43
+ "@lwrjs/types": "0.12.0-alpha.9",
44
44
  "mock-fs": "^5.2.0"
45
45
  },
46
46
  "peerDependencies": {
@@ -49,5 +49,5 @@
49
49
  "engines": {
50
50
  "node": ">=18.0.0"
51
51
  },
52
- "gitHead": "c60963c89e621d2e8af3389b0e075ded2f4bc810"
52
+ "gitHead": "58b28fbc6300b704ac17f8878423120de0e376d7"
53
53
  }