specshield 3.3.4 → 3.3.5

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specshield",
3
- "version": "3.3.4",
3
+ "version": "3.3.5",
4
4
  "description": "Contract compatibility testing for APIs — catch breaking OpenAPI changes before they reach your consumers, with can-i-deploy deploy gating and GitHub PR checks. (a.k.a. bidirectional contract testing.)",
5
5
  "main": "src/cli.js",
6
6
  "bin": {
@@ -162,7 +162,7 @@ function buildConfig(answers, detected) {
162
162
  // ─── Interactive flow ──────────────────────────────────────────────────────
163
163
 
164
164
  async function interactiveFlow(detected, opts) {
165
- fmtSection('SpecShield CLI · setup wizard');
165
+ fmtSection('SpecShield CLI · setup wizard');
166
166
 
167
167
  if (detected.git.remote) ok(`Detected git repo: ${chalk.white(detected.git.remote)}`);
168
168
  if (detected.spec) ok(`Found OpenAPI spec: ${chalk.white(detected.spec)}`);
@@ -15,7 +15,7 @@ function formatHuman(result) {
15
15
 
16
16
  // Summary header
17
17
  lines.push('');
18
- lines.push(chalk.bold(' SpecShield Comparison Report'));
18
+ lines.push(chalk.bold(' SpecShield Comparison Report'));
19
19
  lines.push(chalk.gray(' ─────────────────────────────────────────'));
20
20
  lines.push(
21
21
  ` ${chalk.red.bold(`${breakingChanges.length} breaking`)} ` +