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 +5 -0
- package/dist/command/AbstractCommand.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/changelog.txt
CHANGED
|
@@ -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, '
|
|
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();
|