hdoc-tools 0.33.3 → 0.34.0

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-db.js CHANGED
@@ -16,6 +16,7 @@
16
16
  "doc_md5_hash UNINDEXED",
17
17
  "doc_lastmod",
18
18
  "doc_status",
19
+ "doc_keywords",
19
20
  ],
20
21
  hdoc_meta: [
21
22
  "resource_url",
@@ -175,6 +176,7 @@
175
176
  file.md5,
176
177
  file.lastmod,
177
178
  file.status,
179
+ file.keywords,
178
180
  ];
179
181
  index_response = hdoc_index.insert_record(
180
182
  db,
package/hdoc-build.js CHANGED
@@ -464,6 +464,7 @@
464
464
  lastmod: last_commit !== null ? last_commit : file_path.hb_lastmod,
465
465
  inline: inline_content,
466
466
  status: index_data.fm_props.status ? index_data.fm_props.status : 'release',
467
+ keywords: index_data.fm_props.keywords ? index_data.fm_props.keywords : '',
467
468
  });
468
469
  }
469
470
 
@@ -843,6 +844,7 @@
843
844
  lastmod: last_commit !== null ? last_commit : file_path.hb_lastmod,
844
845
  inline: inline_content,
845
846
  status: index_data.fm_props.status ? index_data.fm_props.status : 'release',
847
+ keywords: index_data.fm_props.keywords ? index_data.fm_props.keywords : '',
846
848
  });
847
849
  }
848
850
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hdoc-tools",
3
- "version": "0.33.3",
3
+ "version": "0.34.0",
4
4
  "description": "Hornbill HDocBook Development Support Tool",
5
5
  "main": "hdoc.js",
6
6
  "bin": {