@stacksjs/buddy 0.58.63 → 0.58.65

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/dist/cli.js CHANGED
@@ -3945,7 +3945,7 @@ async function main() {
3945
3945
  ]);
3946
3946
  buddy.command("inspire", "Inspire yourself with a random quote").alias("insp").action(() => {
3947
3947
  log.info(quotes.random());
3948
- log.success("Have a great dayss!");
3948
+ log.success("Have a great days!");
3949
3949
  });
3950
3950
  buddy.on("inspire:*", () => {
3951
3951
  console.log("Invalid command:", buddy.args.join(" "));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/buddy",
3
3
  "type": "module",
4
- "version": "0.58.63",
4
+ "version": "0.58.65",
5
5
  "description": "Meet Buddy. The Stacks runtime.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
package/src/cli.ts CHANGED
@@ -88,7 +88,7 @@ async function main() {
88
88
  .alias('insp')
89
89
  .action(() => {
90
90
  log.info(quotes.random())
91
- log.success('Have a great dayss!')
91
+ log.success('Have a great days!')
92
92
  })
93
93
 
94
94
  buddy.on('inspire:*', () => {