@reliverse/dler 1.7.13 → 1.7.14
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/bin/libs/sdk/sdk-impl/cfg/info.js +1 -1
- package/bin/libs/sdk/sdk-impl/pub/pub-library.js +0 -2
- package/bin/libs/sdk/sdk-impl/utils/finalize.js +2 -5
- package/bin/libs/sdk/sdk-impl/utils/utils-clean.js +1 -1
- package/bin/libs/sdk/sdk-impl/utils/utils-error-cwd.js +2 -2
- package/package.json +1 -1
|
@@ -71,8 +71,6 @@ async function library_pubToJsr(libOutDir, distJsrDryRun, distJsrFailOnWarn, dis
|
|
|
71
71
|
} catch (error) {
|
|
72
72
|
if (timer) resumePerfTimer(timer);
|
|
73
73
|
throw error;
|
|
74
|
-
} finally {
|
|
75
|
-
relinka("verbose", `Exiting library_pubToJsr for lib: ${libName}`);
|
|
76
74
|
}
|
|
77
75
|
}
|
|
78
76
|
async function library_pubToNpm(libOutDir, distJsrDryRun, _distJsrFailOnWarn, libName, _isDev, timer) {
|
|
@@ -17,12 +17,9 @@ export async function finalizeBuildPub(timer, commonPubPause, libsList, distNpmD
|
|
|
17
17
|
verbose: true
|
|
18
18
|
});
|
|
19
19
|
if (!commonPubPause) {
|
|
20
|
-
relinka("success", `\u{1F389}
|
|
20
|
+
relinka("success", `\u{1F389} Publish completed successfully (build time: ${transpileFormattedTime})`);
|
|
21
21
|
} else {
|
|
22
|
-
relinka(
|
|
23
|
-
"success",
|
|
24
|
-
`\u{1F389} Test build completed successfully (build time: ${transpileFormattedTime})`
|
|
25
|
-
);
|
|
22
|
+
relinka("success", `\u{1F389} Build completed successfully (done in: ${transpileFormattedTime})`);
|
|
26
23
|
relinka("info", "\u{1F4DD} Publish process is currently paused in your config file");
|
|
27
24
|
}
|
|
28
25
|
}
|
|
@@ -29,7 +29,7 @@ export async function removeDistFolders(distNpmDirName, distJsrDirName, libsDirD
|
|
|
29
29
|
},
|
|
30
30
|
{ concurrency: CONCURRENCY_DEFAULT }
|
|
31
31
|
);
|
|
32
|
-
relinka("
|
|
32
|
+
relinka("log", "Distribution folders removed successfully");
|
|
33
33
|
}
|
|
34
34
|
return true;
|
|
35
35
|
}
|
|
@@ -20,7 +20,7 @@ export async function withWorkingDirectory(transpileTargetDir, fn) {
|
|
|
20
20
|
const originalDir = process.cwd();
|
|
21
21
|
try {
|
|
22
22
|
process.chdir(transpileTargetDir);
|
|
23
|
-
relinka("info", `
|
|
23
|
+
relinka("info", `CWD (current working directory): ${originalDir} -> ${transpileTargetDir}`);
|
|
24
24
|
const result = await fn();
|
|
25
25
|
return result;
|
|
26
26
|
} catch (error) {
|
|
@@ -29,7 +29,7 @@ export async function withWorkingDirectory(transpileTargetDir, fn) {
|
|
|
29
29
|
throw error;
|
|
30
30
|
} finally {
|
|
31
31
|
process.chdir(originalDir);
|
|
32
|
-
relinka("info", `
|
|
32
|
+
relinka("info", `CWD (current working directory): ${transpileTargetDir} -> ${originalDir}`);
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
export async function validateDevCwd(isDev, paths, cliName, cliOrg = "") {
|