@pronto-tools-and-more/pronto 4.3.0 → 4.5.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pronto-tools-and-more/pronto",
3
- "version": "4.3.0",
3
+ "version": "4.5.0",
4
4
  "description": "",
5
5
  "main": "src/main.js",
6
6
  "type": "module",
@@ -13,21 +13,21 @@
13
13
  "author": "",
14
14
  "license": "MIT",
15
15
  "dependencies": {
16
- "@pronto-tools-and-more/file-watcher": "4.3.0",
17
- "@pronto-tools-and-more/files": "4.3.0",
18
- "@pronto-tools-and-more/network-process": "4.3.0",
19
- "@pronto-tools-and-more/sass-compiler": "4.3.0",
16
+ "@pronto-tools-and-more/file-watcher": "4.5.0",
17
+ "@pronto-tools-and-more/files": "4.5.0",
18
+ "@pronto-tools-and-more/network-process": "4.5.0",
19
+ "@pronto-tools-and-more/sass-compiler": "4.5.0",
20
20
  "@lvce-editor/assert": "^1.2.0",
21
- "@lvce-editor/ipc": "^9.3.0",
22
- "@lvce-editor/json-rpc": "^1.3.0",
23
- "@lvce-editor/verror": "^1.3.0",
21
+ "@lvce-editor/ipc": "^9.4.0",
22
+ "@lvce-editor/json-rpc": "^1.4.0",
23
+ "@lvce-editor/verror": "^1.4.0",
24
24
  "execa": "^9.3.0",
25
25
  "express": "^4.19.2"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/express": "^4.17.21",
29
29
  "@types/node": "^20.14.10",
30
- "@types/ws": "^8.5.11",
30
+ "@types/ws": "^8.5.12",
31
31
  "jest": "^29.7.0"
32
32
  },
33
33
  "jest": {
@@ -4,7 +4,7 @@ import * as Exec from "../Exec/Exec.js";
4
4
  export const getCommitMessage = async () => {
5
5
  try {
6
6
  if (process.env.CI_COMMIT_MESSAGE) {
7
- return process.env.CI_COMMIT_MESSAGE;
7
+ return process.env.CI_COMMIT_MESSAGE.trim();
8
8
  }
9
9
  const { stdout } = await Exec.exec("git", ["log", "-1", "--pretty=%B"]);
10
10
  return stdout.trim();
@@ -25,12 +25,11 @@ export const upgrade = async () => {
25
25
  pullWorkingCopyUrl,
26
26
  } = Config;
27
27
  const src = join(Cwd.cwd, "src");
28
- const sessionInfo = await GetSessionId.getSessionId({
28
+ const sessionId = await GetSessionId.getSessionId({
29
29
  loginUrl,
30
30
  userEmail,
31
31
  userPassword,
32
32
  });
33
- const sessionId = sessionInfo.sessionID;
34
33
  await PullWorkingCopy.pullWorkingCopy({
35
34
  appId,
36
35
  sessionId,