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.
- package/README.md +25 -0
- package/cli-contract.yaml +1 -1
- package/dist/external/insight-provider.js +2 -4
- package/dist/micro-contracts.bundle.mjs +342 -340
- package/dist/micro-contracts.bundle.mjs.map +4 -4
- package/docs/cli-reference.md +1 -1
- package/docs/development-guardrails.md +2 -2
- package/package.json +1 -1
package/docs/cli-reference.md
CHANGED
|
@@ -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
|
-
#
|
|
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