trm-client 7.0.1 → 7.0.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/changelog.txt CHANGED
@@ -8,6 +8,11 @@ Legend
8
8
  + : added
9
9
  - : removed
10
10
 
11
+ 2025-11-07 v7.0.2
12
+ -------------------
13
+ * deprecate typo
14
+ * hide loading packages with dummy connector
15
+
11
16
  2025-11-07 v7.0.1
12
17
  -------------------
13
18
  + docker running check in darwin os
@@ -132,7 +132,7 @@ class AbstractCommand {
132
132
  getSystemPackages() {
133
133
  return __awaiter(this, void 0, void 0, function* () {
134
134
  if (!this.systemPackages) {
135
- if (Core.SystemConnector instanceof utils_1.DummyConnector) {
135
+ if (Core.SystemConnector.systemConnector instanceof utils_1.DummyConnector) {
136
136
  this.systemPackages = [];
137
137
  }
138
138
  else {
package/dist/index.js CHANGED
@@ -37,7 +37,7 @@ new implementations_1.DistTag(program, 'dist-tag rm').register();
37
37
  new implementations_1.Publish(program, 'pack', ['export']).register();
38
38
  new implementations_1.Lock(program, 'lock', ['lock-file']).register();
39
39
  new implementations_1.Unpublish(program, 'unpublish').register();
40
- new implementations_1.Deprecate(program, 'deprecrate').register();
40
+ new implementations_1.Deprecate(program, 'deprecate').register();
41
41
  new implementations_1.Install(program, 'install', ['i']).register();
42
42
  new implementations_1.Install(program, 'clean-install', ['ci']).register();
43
43
  new implementations_1.Install(program, 'update').register();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trm-client",
3
- "version": "7.0.1",
3
+ "version": "7.0.2",
4
4
  "description": "TRM (Transport Request Manager) Client",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",