@grifhinz/logics-manager 2.7.0 → 2.8.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.
- package/README.md +59 -10
- package/VERSION +1 -1
- package/clients/viewer/browser-host.js +1620 -134
- package/clients/viewer/index.html +2 -0
- package/clients/viewer/viewer.css +542 -1
- package/logics_manager/cli.py +22 -20
- package/logics_manager/flow.py +61 -1
- package/logics_manager/sync.py +47 -19
- package/logics_manager/viewer.py +1206 -20
- package/package.json +2 -1
- package/pyproject.toml +1 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@grifhinz/logics-manager",
|
|
3
3
|
"displayName": "Logics Orchestrator",
|
|
4
4
|
"description": "Visual orchestration for Logics workflows inside VS Code.",
|
|
5
|
-
"version": "2.
|
|
5
|
+
"version": "2.8.1",
|
|
6
6
|
"publisher": "cdx-logics",
|
|
7
7
|
"icon": "clients/shared-web/media/icon.png",
|
|
8
8
|
"repository": {
|
|
@@ -138,6 +138,7 @@
|
|
|
138
138
|
"audit:logics": "node scripts/run-python.mjs -m logics_manager audit && node scripts/run-python.mjs -m logics_manager lint",
|
|
139
139
|
"audit:logics:strict": "node scripts/run-python.mjs -m logics_manager audit --governance-profile strict && node scripts/run-python.mjs -m logics_manager lint --require-status",
|
|
140
140
|
"audit:ci": "node scripts/check-npm-audit.mjs",
|
|
141
|
+
"docs:check": "node scripts/check-readme-badges.mjs",
|
|
141
142
|
"logics:finish:task": "node scripts/run-python.mjs -m logics_manager flow finish task",
|
|
142
143
|
"ci:fast": "npm run compile && npm run lint && npm run test:coverage && npm run test:smoke && npm run lint:logics && npm run package:ci",
|
|
143
144
|
"ci:check": "node scripts/ci-check.mjs",
|