@wyxos/zephyr 0.1.10 → 0.1.11

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 +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wyxos/zephyr",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
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
@@ -13,7 +13,7 @@ const SERVERS_FILE = path.join(GLOBAL_CONFIG_DIR, 'servers.json')
13
13
  const PROJECT_LOCK_FILE = 'deploy.lock'
14
14
  const PENDING_TASKS_FILE = 'pending-tasks.json'
15
15
  const RELEASE_SCRIPT_NAME = 'release'
16
- const RELEASE_SCRIPT_COMMAND = 'npx @wyxos/zephyr@release'
16
+ const RELEASE_SCRIPT_COMMAND = 'npx @wyxos/zephyr@latest'
17
17
 
18
18
  const logProcessing = (message = '') => console.log(chalk.yellow(message))
19
19
  const logSuccess = (message = '') => console.log(chalk.green(message))
@@ -336,7 +336,7 @@ async function ensureProjectReleaseScript(rootDir) {
336
336
  {
337
337
  type: 'confirm',
338
338
  name: 'installReleaseScript',
339
- message: 'Add "release" script to package.json that runs "npx @wyxos/zephyr@release"?',
339
+ message: 'Add "release" script to package.json that runs "npx @wyxos/zephyr@latest"?',
340
340
  default: true
341
341
  }
342
342
  ])