spec-up-t 0.11.7 → 0.11.8
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/src/get-xrefs-data.js +3 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spec-up-t",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.8",
|
|
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": {
|
package/src/get-xrefs-data.js
CHANGED
|
@@ -190,11 +190,9 @@ function getXrefsData() {
|
|
|
190
190
|
});
|
|
191
191
|
|
|
192
192
|
async function fetchLatestCommitHashes() {
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
// match.commitHash = await fetchLatestCommitHash(match);
|
|
197
|
-
// }
|
|
193
|
+
for (const match of allXrefs.xrefs) {
|
|
194
|
+
match.commitHash = await fetchLatestCommitHash(match);
|
|
195
|
+
}
|
|
198
196
|
}
|
|
199
197
|
|
|
200
198
|
// Call the function and wait for it to complete before writing to the file
|