@cyberxon/xon 0.4.0 → 0.4.1
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 +2 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -197,6 +197,7 @@ addDeployStartFlags(projectDeploy.command("start").description("Deploy metadata
|
|
|
197
197
|
coverageFormatters: options.coverageFormatters && options.coverageFormatters.length > 0 ? options.coverageFormatters : undefined,
|
|
198
198
|
junit: options.junit,
|
|
199
199
|
});
|
|
200
|
+
console.log(`Deploy Id: ${status.id}`);
|
|
200
201
|
const waitSeconds = options.async ? 0 : options.wait;
|
|
201
202
|
const final = await waitForDeploy(client, status, waitSeconds);
|
|
202
203
|
await writeDeployResults(options.resultsDir, final);
|
|
@@ -230,6 +231,7 @@ addDeployStartFlags(projectDeploy.command("validate").description("Validate a me
|
|
|
230
231
|
coverageFormatters: options.coverageFormatters && options.coverageFormatters.length > 0 ? options.coverageFormatters : undefined,
|
|
231
232
|
junit: options.junit,
|
|
232
233
|
});
|
|
234
|
+
console.log(`Deploy Id: ${status.id}`);
|
|
233
235
|
const final = await waitForDeploy(client, status, options.wait);
|
|
234
236
|
await writeDeployResults(options.resultsDir, final);
|
|
235
237
|
printDeployResult(final, options);
|