mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
[APPS-2230] fix documentation tools builds (#9277)
* fix typescript version * fix package versions * fix package versions * [ci:force] fix code
This commit is contained in:
parent
2c627f1166
commit
3b2da78617
2699
tools/doc/package-lock.json
generated
2699
tools/doc/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -10,18 +10,17 @@
|
||||
"fast-levenshtein": "^3.0.0",
|
||||
"graphql": "^15.4.0",
|
||||
"js-yaml": "3.14.1",
|
||||
"mdast": "3.0.0",
|
||||
"mdast": "2.1.0",
|
||||
"mdast-util-compact": "1.0.3",
|
||||
"mdast-util-heading-range": "2.1.3",
|
||||
"mdast-util-to-string": "^4.0.0",
|
||||
"mdast-util-toc": "2.1.0",
|
||||
"mdast-zone": "3.0.4",
|
||||
"remark": "^9.0.0",
|
||||
"remark-frontmatter": "^1.2.0",
|
||||
"rxjs": "^6.6.6",
|
||||
"typedoc": "^0.24.8",
|
||||
"typedoc": "^0.15.0",
|
||||
"typescript": "3.9.8",
|
||||
"unist-util-select": "4.0.3"
|
||||
"unist-util-select": "2.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@paperist/types-remark": "0.1.3",
|
||||
|
@ -2,7 +2,7 @@ const path = require('path');
|
||||
const fs = require('fs');
|
||||
const remark = require('remark');
|
||||
const replaceSection = require('mdast-util-heading-range');
|
||||
const { toString } = require('mdast-util-to-string');
|
||||
const toString = require('mdast-util-to-string');
|
||||
const ejs = require('ejs');
|
||||
const unist = require('../unistHelpers');
|
||||
const mdNav = require('../mdNav');
|
||||
|
@ -60,6 +60,12 @@ module.exports = {
|
||||
children: content
|
||||
};
|
||||
},
|
||||
makeInlineCode: function (codeText) {
|
||||
return {
|
||||
"type": "inlineCode",
|
||||
"value": codeText
|
||||
}
|
||||
},
|
||||
makeImage: function (url, alt) {
|
||||
return {
|
||||
type: 'image',
|
||||
|
Loading…
x
Reference in New Issue
Block a user