@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orxataguy/tyr",
3
- "version": "1.0.18",
3
+ "version": "1.0.20",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "tyr": "./bin/tyr.js"
@@ -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('Update complete. Run tyr --version to confirm.');
125
+ console.log(`Current version:`)
126
+ await shell.exec(`tyr --version`)
126
127
  return;
127
128
  }
128
129