@tekyzinc/gsd-t 2.74.10 → 2.74.11
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to GSD-T are documented here. Updated with each release.
|
|
4
4
|
|
|
5
|
+
## [2.74.11] - 2026-04-13
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- **`bin/archive-progress.js` → `.cjs` rename** — the new bin tools used CommonJS `require()` but failed in projects with `"type": "module"` in `package.json` (caught on BDS-Analytics-UI during first update-all). Renamed all three new bin tools to `.cjs` so they run as CommonJS regardless of the host project's module type. `version-update-all` now copies `.cjs` files and runs `archive-progress.cjs`.
|
|
9
|
+
|
|
5
10
|
## [2.74.10] - 2026-04-13
|
|
6
11
|
|
|
7
12
|
### Added
|
package/bin/gsd-t.js
CHANGED
|
@@ -1557,8 +1557,9 @@ function updateSingleProject(projectDir, counts) {
|
|
|
1557
1557
|
}
|
|
1558
1558
|
|
|
1559
1559
|
// Bin tools that should ship with every registered project. Listed here so adding
|
|
1560
|
-
// a new tool only requires appending to this array.
|
|
1561
|
-
|
|
1560
|
+
// a new tool only requires appending to this array. Use .cjs extension so they
|
|
1561
|
+
// always run as CommonJS regardless of the project's package.json "type" field.
|
|
1562
|
+
const PROJECT_BIN_TOOLS = ["archive-progress.cjs", "log-tail.cjs", "context-budget-audit.cjs"];
|
|
1562
1563
|
|
|
1563
1564
|
function copyBinToolsToProject(projectDir, projectName) {
|
|
1564
1565
|
const projectBinDir = path.join(projectDir, "bin");
|
|
@@ -1611,7 +1612,7 @@ function runProgressArchiveMigration(projectDir, projectName) {
|
|
|
1611
1612
|
const markerPath = path.join(projectDir, ".gsd-t", ".archive-migration-v1");
|
|
1612
1613
|
if (fs.existsSync(markerPath)) return false;
|
|
1613
1614
|
|
|
1614
|
-
const archiveScript = path.join(projectDir, "bin", "archive-progress.
|
|
1615
|
+
const archiveScript = path.join(projectDir, "bin", "archive-progress.cjs");
|
|
1615
1616
|
if (!fs.existsSync(archiveScript)) return false;
|
|
1616
1617
|
|
|
1617
1618
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tekyzinc/gsd-t",
|
|
3
|
-
"version": "2.74.
|
|
3
|
+
"version": "2.74.11",
|
|
4
4
|
"description": "GSD-T: Contract-Driven Development for Claude Code — 56 slash commands with headless CI/CD mode, graph-powered code analysis, real-time agent dashboard, execution intelligence, task telemetry, doc-ripple enforcement, backlog management, impact analysis, test sync, milestone archival, and PRD generation",
|
|
5
5
|
"author": "Tekyz, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|