hdoc-tools 0.9.36 → 0.9.38

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/hdoc-build.js CHANGED
@@ -737,7 +737,7 @@
737
737
  for (let i = 0; i < md_files.length; i++) {
738
738
  mdPromiseArray.push(md_files[i]);
739
739
  }
740
- const chunkSize = 4;
740
+ const chunkSize = 8;
741
741
  for (let i = 0; i < mdPromiseArray.length; i += chunkSize) {
742
742
  const chunk = mdPromiseArray.slice(i, i + chunkSize);
743
743
  // do whatever
package/hdoc-validate.js CHANGED
@@ -6,6 +6,7 @@
6
6
  dree = require('dree'),
7
7
  fs = require('fs'),
8
8
  path = require('path'),
9
+ https = require('https'),
9
10
  hdoc = require(path.join(__dirname, 'hdoc-module.js')),
10
11
  translator = require('american-british-english-translator'),
11
12
  { trueCasePathSync } = require('true-case-path');
@@ -14,7 +15,10 @@
14
15
  british: true,
15
16
  spelling: true
16
17
  },
17
- regex_nav_paths = /[a-z0-9-\/]+/g;
18
+ regex_nav_paths = /[a-z0-9-\/]+/g,
19
+ agent = new https.Agent({
20
+ rejectUnauthorized: false
21
+ });
18
22
 
19
23
  let errors = {},
20
24
  messages = {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hdoc-tools",
3
- "version": "0.9.36",
3
+ "version": "0.9.38",
4
4
  "description": "Hornbill HDocBook Development Support Tool",
5
5
  "main": "hdoc.js",
6
6
  "bin": {