spec-up-t 1.1.44 → 1.1.45

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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -35,7 +35,7 @@ module.exports = async function (options = {}) {
35
35
 
36
36
  const { fixMarkdownFiles } = require('./src/fix-markdown-files.js');
37
37
 
38
- const { prepareTref } = require('./src/prepare-tref.js');
38
+ // const { prepareTref } = require('./src/prepare-tref.js');
39
39
 
40
40
  let template = fs.readFileSync(path.join(modulePath, 'templates/template.html'), 'utf8');
41
41
  let assets = fs.readJsonSync(modulePath + '/src/asset-map.json');
@@ -56,7 +56,7 @@ module.exports = async function (options = {}) {
56
56
  }
57
57
  ];
58
58
 
59
- prepareTref(path.join(config.specs[0].spec_directory, config.specs[0].spec_terms_directory));
59
+ // prepareTref(path.join(config.specs[0].spec_directory, config.specs[0].spec_terms_directory));
60
60
 
61
61
  // Synchronously process markdown files
62
62
  fixMarkdownFiles(path.join(config.specs[0].spec_directory, config.specs[0].spec_terms_directory));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spec-up-t",
3
- "version": "1.1.44",
3
+ "version": "1.1.45",
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": {