playcademy 0.14.11-alpha.2 → 0.14.11-alpha.4

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/dist/index.js +10 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -10784,7 +10784,17 @@ async function runDeployment(options) {
10784
10784
  await selectEnvironment({ env: environment, dryRun: options.dryRun });
10785
10785
  const context2 = await prepareDeploymentContext(options);
10786
10786
  displayCurrentConfiguration(context2);
10787
+ logger.debug(`[DEBUG] Before promptForMissingConfig:`);
10788
+ logger.debug(` config.displayName: ${context2.config.displayName}`);
10789
+ logger.debug(` config.buildPath: ${context2.config.buildPath}`);
10790
+ logger.debug(` context.buildHash: ${context2.buildHash}`);
10791
+ logger.debug(` context.buildSize: ${context2.buildSize}`);
10792
+ logger.newLine();
10787
10793
  const didPrompt = await promptForMissingConfig(context2);
10794
+ logger.debug(`[DEBUG] After promptForMissingConfig:`);
10795
+ logger.debug(` didPrompt: ${didPrompt}`);
10796
+ logger.debug(` config.buildPath: ${context2.config.buildPath}`);
10797
+ logger.newLine();
10788
10798
  if (didPrompt && context2.config.buildPath) {
10789
10799
  logger.debug(`[DEBUG] Before updateBuildMetadata:`);
10790
10800
  logger.debug(` buildPath: ${context2.config.buildPath}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "playcademy",
3
- "version": "0.14.11-alpha.2",
3
+ "version": "0.14.11-alpha.4",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {