@salesforce/webapp-template-cli-experimental 1.58.0 → 1.58.2
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/dist/nx-plugin/executors/build-dist-app/executor.d.ts +2 -2
- package/dist/nx-plugin/executors/build-dist-app/executor.d.ts.map +1 -1
- package/dist/nx-plugin/executors/build-dist-app/executor.js +39 -11
- package/dist/nx-plugin/executors/build-dist-app/executor.js.map +1 -1
- package/package.json +2 -2
|
@@ -9,8 +9,8 @@ export interface BuildDistAppExecutorResult {
|
|
|
9
9
|
/**
|
|
10
10
|
* Nx executor for building the application in the dist folder
|
|
11
11
|
*
|
|
12
|
-
* This executor navigates to the project's dist folder and runs npm
|
|
13
|
-
*
|
|
12
|
+
* This executor navigates to the project's dist folder and runs npm install (no lockfile),
|
|
13
|
+
* installs internal @salesforce packages from workspace via file:, then npm run build.
|
|
14
14
|
*
|
|
15
15
|
* @param options - Executor options
|
|
16
16
|
* @param context - Nx executor context
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.d.ts","sourceRoot":"","sources":["../../../../src/nx-plugin/executors/build-dist-app/executor.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,KAAK,eAAe,EAAU,MAAM,YAAY,CAAC;AAC1D,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"executor.d.ts","sourceRoot":"","sources":["../../../../src/nx-plugin/executors/build-dist-app/executor.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,KAAK,eAAe,EAAU,MAAM,YAAY,CAAC;AAC1D,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,UAAU,CAAC;AAkB5D;;GAEG;AACH,MAAM,WAAW,0BAA0B;IAC1C,OAAO,EAAE,OAAO,CAAC;CACjB;AAED;;;;;;;;;GASG;AACH,wBAA8B,WAAW,CACxC,OAAO,EAAE,2BAA2B,EACpC,OAAO,EAAE,eAAe,GACtB,OAAO,CAAC,0BAA0B,CAAC,CA+CrC"}
|
|
@@ -4,15 +4,28 @@
|
|
|
4
4
|
* For full license text, see the LICENSE.txt file
|
|
5
5
|
*/
|
|
6
6
|
import { execSync } from "child_process";
|
|
7
|
-
import { existsSync } from "fs";
|
|
7
|
+
import { existsSync, readFileSync } from "fs";
|
|
8
8
|
import { join } from "path";
|
|
9
9
|
import { logger } from "@nx/devkit";
|
|
10
10
|
import { createProjectPaths } from "../utils";
|
|
11
|
+
const NO_PACKAGE_LOCK = "--package-lock=false";
|
|
12
|
+
/** Workspace-relative paths for internal @salesforce packages to install from file (not template/app/feature packages). */
|
|
13
|
+
const INTERNAL_PACKAGE_PATHS = [
|
|
14
|
+
"packages/sdk/sdk-core",
|
|
15
|
+
"packages/sdk/sdk-data",
|
|
16
|
+
"packages/sdk/sdk-chat",
|
|
17
|
+
"packages/sdk/sdk-lightning",
|
|
18
|
+
"packages/sdk/sdk-view",
|
|
19
|
+
"packages/webapps",
|
|
20
|
+
"packages/vite-plugin-webapps",
|
|
21
|
+
"packages/micro-frontends",
|
|
22
|
+
"packages/agentforceConversationClient",
|
|
23
|
+
];
|
|
11
24
|
/**
|
|
12
25
|
* Nx executor for building the application in the dist folder
|
|
13
26
|
*
|
|
14
|
-
* This executor navigates to the project's dist folder and runs npm
|
|
15
|
-
*
|
|
27
|
+
* This executor navigates to the project's dist folder and runs npm install (no lockfile),
|
|
28
|
+
* installs internal @salesforce packages from workspace via file:, then npm run build.
|
|
16
29
|
*
|
|
17
30
|
* @param options - Executor options
|
|
18
31
|
* @param context - Nx executor context
|
|
@@ -28,14 +41,29 @@ export default async function runExecutor(options, context) {
|
|
|
28
41
|
const targetPath = join(context.root, projectPaths.webApp);
|
|
29
42
|
logger.info(`Building application in ${targetPath}...`);
|
|
30
43
|
const execOptions = { cwd: targetPath, stdio: "inherit", env: process.env };
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
44
|
+
// Always npm install without generating a lockfile so dist is safe for publishing
|
|
45
|
+
logger.info("Running npm install (no package lock)...");
|
|
46
|
+
execSync(`npm install ${NO_PACKAGE_LOCK}`, execOptions);
|
|
47
|
+
// Install internal @salesforce packages from workspace so dist app uses local builds (also no lockfile)
|
|
48
|
+
for (const relPath of INTERNAL_PACKAGE_PATHS) {
|
|
49
|
+
const pkgPath = join(context.root, relPath);
|
|
50
|
+
const pkgJsonPath = join(pkgPath, "package.json");
|
|
51
|
+
if (!existsSync(pkgJsonPath))
|
|
52
|
+
continue;
|
|
53
|
+
const distPath = join(pkgPath, "dist");
|
|
54
|
+
if (!existsSync(distPath))
|
|
55
|
+
continue;
|
|
56
|
+
let name;
|
|
57
|
+
try {
|
|
58
|
+
name = JSON.parse(readFileSync(pkgJsonPath, "utf8")).name;
|
|
59
|
+
}
|
|
60
|
+
catch {
|
|
61
|
+
continue;
|
|
62
|
+
}
|
|
63
|
+
if (!name || !name.startsWith("@salesforce/"))
|
|
64
|
+
continue;
|
|
65
|
+
logger.info(`Installing local ${name} from workspace...`);
|
|
66
|
+
execSync(`npm install ${name}@file:${pkgPath} ${NO_PACKAGE_LOCK}`, execOptions);
|
|
39
67
|
}
|
|
40
68
|
// Execute npm run build
|
|
41
69
|
logger.info("Running npm run build...");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../src/nx-plugin/executors/build-dist-app/executor.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,OAAO,EAAE,QAAQ,EAAwB,MAAM,eAAe,CAAC;AAC/D,OAAO,EAAE,UAAU,EAAE,MAAM,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"executor.js","sourceRoot":"","sources":["../../../../src/nx-plugin/executors/build-dist-app/executor.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/webapp-template-cli-experimental",
|
|
3
|
-
"version": "1.58.
|
|
3
|
+
"version": "1.58.2",
|
|
4
4
|
"description": "CLI tool for applying feature patches to base apps",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"type": "module",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"typescript": "~5.9.3",
|
|
46
46
|
"vitest": "^4.0.17"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "0dda7fdd05f5b8fd9870e57cc796663555166a90"
|
|
49
49
|
}
|