@wyxos/zephyr 0.1.14 → 0.1.15

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 +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wyxos/zephyr",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
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
@@ -837,7 +837,7 @@ async function runRemoteTasks(config, options = {}) {
837
837
  if (isLaravel) {
838
838
  logProcessing('Running Laravel tests locally...')
839
839
  try {
840
- await runCommand('php', ['artisan', 'test', '--compact'], { cwd: rootDir })
840
+ await runCommand('php', ['artisan', 'test'], { cwd: rootDir })
841
841
  logSuccess('Local tests passed.')
842
842
  } catch (error) {
843
843
  throw new Error(`Local tests failed. Fix test failures before deploying. ${error.message}`)