@wyxos/zephyr 0.1.8 → 0.1.9

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.mjs +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wyxos/zephyr",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "A streamlined deployment tool for web applications with intelligent Laravel project detection",
5
5
  "type": "module",
6
6
  "main": "./src/index.mjs",
package/src/index.mjs CHANGED
@@ -853,6 +853,11 @@ async function runRemoteTasks(config, options = {}) {
853
853
  throw new Error(`Command failed: ${command}`)
854
854
  }
855
855
 
856
+ // Show success confirmation with command
857
+ if (result.code === 0) {
858
+ logSuccess(`✓ ${command}`)
859
+ }
860
+
856
861
  return result
857
862
  }
858
863