spec-up-t 0.11.33 → 0.11.34

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spec-up-t",
3
- "version": "0.11.33",
3
+ "version": "0.11.34",
4
4
  "description": "Technical specification drafting tool that generates rich specification documents from markdown. Forked from https://github.com/decentralized-identity/spec-up by Daniel Buchner (https://github.com/csuwildcat)",
5
5
  "main": "./index",
6
6
  "repository": {
@@ -92,7 +92,7 @@ function getXrefsData() {
92
92
  // Get only the last commit
93
93
  const commits = data.slice(0, 1);
94
94
  // Assign the fetched commit hash to the variable commitHash
95
- const commitHash = commits.map(commit => commit.sha);
95
+ let commitHash = commits.map(commit => commit.sha);
96
96
 
97
97
  console.log(`\nCommit hash found for the term “${match.term}”: `, commitHash);
98
98