@deftai/directive-content 0.61.0 → 0.61.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/package.json +1 -1
- package/tasks/install.yml +12 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deftai/directive-content",
|
|
3
|
-
"version": "0.61.
|
|
3
|
+
"version": "0.61.1",
|
|
4
4
|
"description": "Shippable Directive framework content in the consumer .deft/core/ layout (C1 flatten), plus the engine surfaces (.githooks/, Taskfile.yml, tasks/) the deposit wires. Python-free per #2022 Phase 3. Refs #11, #1669, #1967.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
package/tasks/install.yml
CHANGED
|
@@ -51,11 +51,20 @@ tasks:
|
|
|
51
51
|
# on PR #1067 -- the upgrade handler does not currently accept flags; future
|
|
52
52
|
# flag additions land deliberately, not implicitly via Taskfile drift).
|
|
53
53
|
upgrade:
|
|
54
|
-
desc: "Upgrade deft framework: refresh AGENTS.md to current marker, write canonical install manifest, regenerate .deft-version derivative (#1061). Dispatches via deft-ts install-upgrade."
|
|
54
|
+
desc: "Upgrade deft framework: refresh AGENTS.md to current marker, write canonical install manifest, regenerate .deft-version derivative (#1061). Dispatches via deft-ts install-upgrade (vendored bin.js in source checkouts, global deft on npm consumer deposits -- #2054)."
|
|
55
55
|
dir: '{{.USER_WORKING_DIR}}'
|
|
56
56
|
vars:
|
|
57
57
|
CLI_ARGS: ""
|
|
58
|
+
# #2054: route through the consumer-aware engine dispatch (engine:_ts-build is a
|
|
59
|
+
# no-op on vendored deposits; engine:invoke falls back to global `deft`). The
|
|
60
|
+
# previous `_ts-build` dep unconditionally ran `pnpm run build` inside the
|
|
61
|
+
# `@deftai/directive-content` payload -- which has no `build` script -- so
|
|
62
|
+
# `task upgrade` failed on the primary npm consumer workflow. Framework-root is
|
|
63
|
+
# intentionally omitted: install-upgrade auto-detects the consumer's
|
|
64
|
+
# `.deft/core/VERSION` (#2053) when run from the global engine.
|
|
58
65
|
deps:
|
|
59
|
-
- _ts-build
|
|
66
|
+
- task: :engine:_ts-build
|
|
60
67
|
cmds:
|
|
61
|
-
-
|
|
68
|
+
- task: :engine:invoke
|
|
69
|
+
vars:
|
|
70
|
+
ENGINE_CMD: 'install-upgrade --project-root "{{.USER_WORKING_DIR}}"'
|