micro-contracts 0.17.14 → 0.17.15

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.
@@ -2,7 +2,7 @@
2
2
 
3
3
  Contract-first OpenAPI toolchain for TypeScript Web/API systems. Generates contract packages, server routes, and frontend clients from OpenAPI specifications with enforceable guardrails.
4
4
 
5
- **Version:** 0.17.14
5
+ **Version:** 0.17.15
6
6
 
7
7
  ## Table of Contents
8
8
 
@@ -336,7 +336,7 @@ generated:
336
336
  # Gate 5: Doc Consistency & Static Analysis
337
337
  # - docs-sync: Markdown Sync (embedoc)
338
338
  # - docs-links: Links Valid
339
- # - security (built-in): CodeQL static analysis
339
+ # Note: CodeQL runs as a separate CI job (see .github/workflows/)
340
340
  #
341
341
  # Placeholders:
342
342
  # {files} - space-separated list of target files (auto-detected)
@@ -571,6 +571,7 @@ jobs:
571
571
  ```json
572
572
  "scripts": {
573
573
  "generate": "node ../dist/cli.js generate",
574
+ "pipeline": "node ../dist/cli.js pipeline",
574
575
 
575
576
  "check": "node ../dist/cli.js check",
576
577
  "check:all": "node ../dist/cli.js check",
@@ -608,7 +609,6 @@ jobs:
608
609
  "server:install": "cd server && npm install",
609
610
  "frontend:install": "cd frontend && npm install",
610
611
  "server:dev": "cd server && PORT=3001 npm run dev",
611
- "frontend:dev": "cd frontend && VITE_API_BASE_URL=http://localhost:3001 npm run dev -- --port 5173",
612
612
  ```
613
613
 
614
614
  📄 Source: [`package.json`](../examples/package.json) (lines 7-46)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "micro-contracts",
3
- "version": "0.17.14",
3
+ "version": "0.17.15",
4
4
  "description": "Contract-first OpenAPI toolchain that keeps TypeScript UI and microservices aligned via code generation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",