@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.
- package/package.json +1 -1
- package/src/index.mjs +2 -2
package/package.json
CHANGED
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@
|
|
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@
|
|
339
|
+
message: 'Add "release" script to package.json that runs "npx @wyxos/zephyr@latest"?',
|
|
340
340
|
default: true
|
|
341
341
|
}
|
|
342
342
|
])
|