qcobjects-cli 2.4.40 → 2.4.43

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/.eslintignore CHANGED
@@ -1,4 +1,5 @@
1
1
  build
2
2
  dist
3
3
  public
4
- src/**/*.d.ts
4
+ src/**/*.d.ts
5
+ src/**/*.js
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.4.40
1
+ 2.4.43
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qcobjects-cli",
3
- "version": "2.4.40",
3
+ "version": "2.4.43",
4
4
  "description": "qcobjects cli command line tool",
5
5
  "main": "src/index.cjs",
6
6
  "module": "src/index.mjs",
@@ -26,7 +26,7 @@
26
26
  "mime": "^2.4.7",
27
27
  "qcobjects": "^2.4.68",
28
28
  "yaml": "^2.2.2",
29
- "qcobjects-sdk": "^2.4.32"
29
+ "qcobjects-sdk": "^2.4.33"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/qcobjects": "github:QCObjects/-types-qcobjects",
@@ -44,12 +44,12 @@
44
44
  "eslint-plugin-promise": "^6.1.1",
45
45
  "jasmine": "^3.99.0",
46
46
  "qcobjects": "^2.4.68",
47
- "qcobjects-sdk": "^2.4.32",
47
+ "qcobjects-sdk": "^2.4.34",
48
48
  "qcobjects-tsconfig": "^2.4.10"
49
49
  },
50
50
  "peerDependencies": {
51
51
  "qcobjects": "^2.4.68",
52
- "qcobjects-sdk": "^2.4.32"
52
+ "qcobjects-sdk": "^2.4.33"
53
53
  },
54
54
  "repository": {
55
55
  "type": "file",
@@ -347,4 +347,9 @@ try {
347
347
  }
348
348
 
349
349
  logger.info("Dependencies loaded");
350
+
351
+ process.once("SIGTERM", ()=> {
352
+ console.log("\x1b[33m%s\x1b[0m", "Bye bye!");
353
+ process.exit();
354
+ });
350
355
  })();