@orxataguy/tyr 1.0.18 → 1.0.20
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 +1 -1
- package/src/core/Kernel.ts +2 -1
package/package.json
CHANGED
package/src/core/Kernel.ts
CHANGED
|
@@ -122,7 +122,8 @@ export class Kernel {
|
|
|
122
122
|
const shell = this.container.get().shell;
|
|
123
123
|
console.log(`Updating ${pkg.name}...`);
|
|
124
124
|
await shell.exec(`npm update -g ${pkg.name}`);
|
|
125
|
-
console.log(
|
|
125
|
+
console.log(`Current version:`)
|
|
126
|
+
await shell.exec(`tyr --version`)
|
|
126
127
|
return;
|
|
127
128
|
}
|
|
128
129
|
|