@wordpress-flow/cli 1.1.0 → 1.1.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.
Files changed (2) hide show
  1. package/dist/index.js +6 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -115880,7 +115880,7 @@ add_action('enqueue_block_assets', 'wordpress_flow_enqueue_block_scripts');
115880
115880
  // package.json
115881
115881
  var package_default = {
115882
115882
  name: "@wordpress-flow/cli",
115883
- version: "1.1.0",
115883
+ version: "1.1.1",
115884
115884
  type: "module",
115885
115885
  description: "TypeScript-based WordPress block creation system",
115886
115886
  main: "dist/index.js",
@@ -117073,7 +117073,11 @@ Failed to build ${failures.length} block(s):`);
117073
117073
  logger.success(`Build completed successfully! Built ${successCount} block(s).`);
117074
117074
  }
117075
117075
  } catch (error) {
117076
- logger.error("Build operation failed");
117076
+ logger.error("Build operation failed:");
117077
+ logger.error(error.message || String(error));
117078
+ if (error.stack) {
117079
+ logger.debug(error.stack);
117080
+ }
117077
117081
  process.exit(1);
117078
117082
  }
117079
117083
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress-flow/cli",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "type": "module",
5
5
  "description": "TypeScript-based WordPress block creation system",
6
6
  "main": "dist/index.js",