docusaurus-plugin-typedoc 0.16.2 → 0.16.6
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/README.md +51 -24
- package/dist/options.d.ts +0 -1
- package/dist/options.js +4 -27
- package/dist/plugin.d.ts +3 -2
- package/dist/plugin.js +26 -21
- package/dist/render.d.ts +2 -1
- package/dist/render.js +46 -10
- package/dist/theme.d.ts +2 -0
- package/dist/theme.js +13 -4
- package/dist/types.d.ts +1 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -7,14 +7,11 @@ A [Docusaurus v2](https://v2.docusaurus.io/) plugin to build documentation with
|
|
|
7
7
|
|
|
8
8
|
## What it does?
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
- Adds frontmatter to pages.
|
|
10
|
+
Generates static TypeDoc pages in Markdown with frontmatter as part of the Docusaurus build.
|
|
12
11
|
|
|
13
12
|
## Installation
|
|
14
13
|
|
|
15
|
-
> Install in the same location as the Docusaurus website directory.
|
|
16
|
-
|
|
17
|
-
This guide assumes that a Docusaurus project has already been setup. See [installation docs](https://v2.docusaurus.io/docs/installation).
|
|
14
|
+
> Install [Docusaurus](https://v2.docusaurus.io/docs/installation) in the root of your project and install the plugin dependencies in the same location as the Docusaurus website directory.
|
|
18
15
|
|
|
19
16
|
```shell
|
|
20
17
|
npm install typedoc typedoc-plugin-markdown docusaurus-plugin-typedoc --save-dev
|
|
@@ -49,16 +46,21 @@ TypeDoc will be bootstraped with the Docusaurus `start` and `build` [cli command
|
|
|
49
46
|
"build": "docusaurus build",
|
|
50
47
|
```
|
|
51
48
|
|
|
52
|
-
Once built the docs will be available at `/docs/api` or equivalent out directory.
|
|
49
|
+
Once built the docs will be available at `/docs/api` (or equivalent out directory).
|
|
50
|
+
|
|
51
|
+
### Directory structure
|
|
53
52
|
|
|
54
53
|
```
|
|
55
|
-
|
|
56
|
-
├── build/ (static site dir)
|
|
57
|
-
├── docs/
|
|
58
|
-
│ ├── api/ (compiled typedoc markdown)
|
|
59
|
-
├── docusaurus.config.js
|
|
60
|
-
├── package.json
|
|
61
|
-
├── sidebars.js
|
|
54
|
+
├── docusauruss-website
|
|
55
|
+
├── build/ (static site dir)
|
|
56
|
+
├── docs/
|
|
57
|
+
│ ├── api/ (compiled typedoc markdown)
|
|
58
|
+
├── docusaurus.config.js
|
|
59
|
+
├── package.json
|
|
60
|
+
├── sidebars.js
|
|
61
|
+
├──package.json
|
|
62
|
+
├──src (typescript source files)
|
|
63
|
+
├──tsconfig.json
|
|
62
64
|
```
|
|
63
65
|
|
|
64
66
|
|
|
@@ -88,16 +90,18 @@ TypeDoc options can also be declared:
|
|
|
88
90
|
- Using a `typedoc.json` file.
|
|
89
91
|
- Under the `typedocOptions` key in `tsconfig.json`.
|
|
90
92
|
|
|
91
|
-
Note: Options declared in this manner will take priority and overwrite options declared in `docusaurus.config.js`.
|
|
93
|
+
> Note: Options declared in this manner will take priority and overwrite options declared in `docusaurus.config.js`.
|
|
92
94
|
|
|
93
95
|
### Plugin options
|
|
94
96
|
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
|
98
|
-
|
|
|
99
|
-
| `
|
|
100
|
-
| `sidebar.
|
|
97
|
+
Options specific to the plugin should also be declared in the same object.
|
|
98
|
+
|
|
99
|
+
| Name | Default | Description |
|
|
100
|
+
| :---------------------- | :------ | :------------------------------------------------------- |
|
|
101
|
+
| `out` | `"api"` | Output dir relative to docs dir (use `.` for no subdir). | |
|
|
102
|
+
| `sidebar.categoryLabel` | `API` | The sidebar parent category label. |
|
|
103
|
+
| `sidebar.fullNames` | `false` | Display full names with module path. |
|
|
104
|
+
| `sidebar.position` | `auto` | The position of the sidebar in the tree. |
|
|
101
105
|
|
|
102
106
|
### An example configuration
|
|
103
107
|
|
|
@@ -126,13 +130,16 @@ module.exports = {
|
|
|
126
130
|
};
|
|
127
131
|
```
|
|
128
132
|
|
|
133
|
+
|
|
134
|
+
## Recipes
|
|
135
|
+
|
|
129
136
|
### Sidebar and Navbar
|
|
130
137
|
|
|
131
138
|
#### Sidebar
|
|
132
139
|
|
|
133
140
|
`sidebars.js` can be configured in following ways:
|
|
134
141
|
|
|
135
|
-
1
|
|
142
|
+
1) Generate the entire sidebar from file structure of your docs folder (default behaviour):
|
|
136
143
|
|
|
137
144
|
```js
|
|
138
145
|
module.exports = {
|
|
@@ -145,9 +152,9 @@ module.exports = {
|
|
|
145
152
|
};
|
|
146
153
|
```
|
|
147
154
|
|
|
148
|
-
2
|
|
155
|
+
2) Alternatively, if you wish to manually control other parts of your sidebar you can use a slice for the TypeDoc sidebar.
|
|
149
156
|
|
|
150
|
-
>note: `sidebar.categoryLabel` and `sidebar.position` options are ignored with this implementation)
|
|
157
|
+
> note: `sidebar.categoryLabel` and `sidebar.position` options are ignored with this implementation)
|
|
151
158
|
|
|
152
159
|
```js
|
|
153
160
|
module.exports = {
|
|
@@ -186,7 +193,6 @@ A navbar item can be configured in `themeConfig` options in `docusaurus.config.j
|
|
|
186
193
|
|
|
187
194
|
Please see https://docusaurus.io/docs/api/themes/configuration#navbar-items for navbar documentation.
|
|
188
195
|
|
|
189
|
-
## Additional config
|
|
190
196
|
|
|
191
197
|
### Multi instance
|
|
192
198
|
|
|
@@ -246,6 +252,27 @@ module.exports = {
|
|
|
246
252
|
};
|
|
247
253
|
```
|
|
248
254
|
|
|
255
|
+
### Monorepo setup
|
|
256
|
+
|
|
257
|
+
`docusaurus.config.js`
|
|
258
|
+
|
|
259
|
+
```js
|
|
260
|
+
module.exports = {
|
|
261
|
+
plugins: [
|
|
262
|
+
[
|
|
263
|
+
'docusaurus-plugin-typedoc',
|
|
264
|
+
{
|
|
265
|
+
entryPoints: ['../packages/package-a', '../packages/package-b'],
|
|
266
|
+
entryPointStrategy: 'packages',
|
|
267
|
+
sidebar: {
|
|
268
|
+
fullNames: true
|
|
269
|
+
},
|
|
270
|
+
},
|
|
271
|
+
],
|
|
272
|
+
],
|
|
273
|
+
};
|
|
274
|
+
```
|
|
275
|
+
|
|
249
276
|
## License
|
|
250
277
|
|
|
251
278
|
[MIT](https://github.com/tgreyuk/typedoc-plugin-markdown/blob/master/packages/docusaurus-plugin-typedoc/LICENSE)
|
package/dist/options.d.ts
CHANGED
package/dist/options.js
CHANGED
|
@@ -1,26 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
-
}) : (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
o[k2] = m[k];
|
|
8
|
-
}));
|
|
9
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
-
}) : function(o, v) {
|
|
12
|
-
o["default"] = v;
|
|
13
|
-
});
|
|
14
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
-
if (mod && mod.__esModule) return mod;
|
|
16
|
-
var result = {};
|
|
17
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
-
__setModuleDefault(result, mod);
|
|
19
|
-
return result;
|
|
20
|
-
};
|
|
21
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
-
exports.
|
|
23
|
-
const path = __importStar(require("path"));
|
|
3
|
+
exports.getPluginOptions = void 0;
|
|
24
4
|
const DEFAULT_PLUGIN_OPTIONS = {
|
|
25
5
|
id: 'default',
|
|
26
6
|
docsRoot: 'docs',
|
|
@@ -32,12 +12,13 @@ const DEFAULT_PLUGIN_OPTIONS = {
|
|
|
32
12
|
readmeLabel: 'Readme',
|
|
33
13
|
position: null,
|
|
34
14
|
},
|
|
35
|
-
plugin: ['none'],
|
|
36
|
-
watch: false,
|
|
37
15
|
hideInPageTOC: true,
|
|
38
16
|
hideBreadcrumbs: true,
|
|
39
17
|
hidePageTitle: true,
|
|
40
18
|
entryDocument: 'index.md',
|
|
19
|
+
plugin: ['none'],
|
|
20
|
+
watch: false,
|
|
21
|
+
indexSlug: undefined,
|
|
41
22
|
};
|
|
42
23
|
const getPluginOptions = (opts) => {
|
|
43
24
|
const options = {
|
|
@@ -51,7 +32,3 @@ const getPluginOptions = (opts) => {
|
|
|
51
32
|
return options;
|
|
52
33
|
};
|
|
53
34
|
exports.getPluginOptions = getPluginOptions;
|
|
54
|
-
const getOutputDirectory = (siteDir, options) => {
|
|
55
|
-
return path.resolve(siteDir, options.docsRoot, path.relative(process.cwd(), options.out));
|
|
56
|
-
};
|
|
57
|
-
exports.getOutputDirectory = getOutputDirectory;
|
package/dist/plugin.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { LoadContext } from '@docusaurus/types';
|
|
2
2
|
import { PluginOptions } from './types';
|
|
3
|
-
export default function pluginDocusaurus(context: LoadContext, opts: Partial<PluginOptions>):
|
|
3
|
+
export default function pluginDocusaurus(context: LoadContext, opts: Partial<PluginOptions>): {
|
|
4
4
|
name: string;
|
|
5
|
-
|
|
5
|
+
loadContent(): Promise<void>;
|
|
6
|
+
};
|
package/dist/plugin.js
CHANGED
|
@@ -25,29 +25,34 @@ const typedoc_plugin_markdown_1 = require("typedoc-plugin-markdown");
|
|
|
25
25
|
const options_1 = require("./options");
|
|
26
26
|
const render_1 = require("./render");
|
|
27
27
|
const apps = [];
|
|
28
|
-
|
|
29
|
-
if (opts.id && !apps.includes(opts.id)) {
|
|
30
|
-
apps.push(opts.id);
|
|
31
|
-
const { siteDir } = context;
|
|
32
|
-
const app = new typedoc_1.Application();
|
|
33
|
-
app.options.setValue('theme', path.resolve(__dirname));
|
|
34
|
-
(0, typedoc_plugin_markdown_1.load)(app);
|
|
35
|
-
const options = (0, render_1.bootstrap)(app, opts);
|
|
36
|
-
const project = app.convert();
|
|
37
|
-
if (!project) {
|
|
38
|
-
return;
|
|
39
|
-
}
|
|
40
|
-
if (options.watch) {
|
|
41
|
-
app.convertAndWatch(async (project) => {
|
|
42
|
-
await app.generateDocs(project, (0, options_1.getOutputDirectory)(siteDir, options));
|
|
43
|
-
});
|
|
44
|
-
}
|
|
45
|
-
else {
|
|
46
|
-
await app.generateDocs(project, (0, options_1.getOutputDirectory)(siteDir, options));
|
|
47
|
-
}
|
|
48
|
-
}
|
|
28
|
+
function pluginDocusaurus(context, opts) {
|
|
49
29
|
return {
|
|
50
30
|
name: 'docusaurus-plugin-typedoc',
|
|
31
|
+
async loadContent() {
|
|
32
|
+
if (opts.id && !apps.includes(opts.id)) {
|
|
33
|
+
apps.push(opts.id);
|
|
34
|
+
const { siteDir } = context;
|
|
35
|
+
const options = (0, options_1.getPluginOptions)(opts);
|
|
36
|
+
const outputDir = path.resolve(siteDir, options.docsRoot, options.out);
|
|
37
|
+
(0, render_1.removeDir)(outputDir);
|
|
38
|
+
const app = new typedoc_1.Application();
|
|
39
|
+
app.options.setValue('theme', path.resolve(__dirname));
|
|
40
|
+
(0, typedoc_plugin_markdown_1.load)(app);
|
|
41
|
+
(0, render_1.bootstrap)(app, options);
|
|
42
|
+
const project = app.convert();
|
|
43
|
+
if (!project) {
|
|
44
|
+
return;
|
|
45
|
+
}
|
|
46
|
+
if (options.watch) {
|
|
47
|
+
app.convertAndWatch(async (project) => {
|
|
48
|
+
await app.generateDocs(project, outputDir);
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
await app.generateDocs(project, outputDir);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
},
|
|
51
56
|
};
|
|
52
57
|
}
|
|
53
58
|
exports.default = pluginDocusaurus;
|
package/dist/render.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { Application } from 'typedoc';
|
|
2
2
|
import { PluginOptions } from './types';
|
|
3
|
-
export declare const bootstrap: (app: Application,
|
|
3
|
+
export declare const bootstrap: (app: Application, options: PluginOptions) => void;
|
|
4
|
+
export declare function removeDir(path: string): void;
|
package/dist/render.js
CHANGED
|
@@ -1,22 +1,36 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
10
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
11
|
+
}) : function(o, v) {
|
|
12
|
+
o["default"] = v;
|
|
13
|
+
});
|
|
14
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
15
|
+
if (mod && mod.__esModule) return mod;
|
|
16
|
+
var result = {};
|
|
17
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
18
|
+
__setModuleDefault(result, mod);
|
|
19
|
+
return result;
|
|
20
|
+
};
|
|
2
21
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.bootstrap = void 0;
|
|
22
|
+
exports.removeDir = exports.bootstrap = void 0;
|
|
23
|
+
const fs = __importStar(require("fs"));
|
|
4
24
|
const typedoc_1 = require("typedoc");
|
|
5
|
-
const
|
|
6
|
-
const bootstrap = (app, opts) => {
|
|
25
|
+
const bootstrap = (app, options) => {
|
|
7
26
|
addTypedocReaders(app);
|
|
8
27
|
addTypedocDeclarations(app);
|
|
9
28
|
app.renderer.render = render;
|
|
10
|
-
app.bootstrap(
|
|
11
|
-
return app.options.getRawValues();
|
|
29
|
+
app.bootstrap(options);
|
|
12
30
|
};
|
|
13
31
|
exports.bootstrap = bootstrap;
|
|
14
32
|
async function render(project, outputDirectory) {
|
|
15
33
|
var _a;
|
|
16
|
-
if (!this.prepareTheme() ||
|
|
17
|
-
!(await this.prepareOutputDirectory(outputDirectory))) {
|
|
18
|
-
return;
|
|
19
|
-
}
|
|
20
34
|
const output = new typedoc_1.RendererEvent(typedoc_1.RendererEvent.BEGIN, outputDirectory, project);
|
|
21
35
|
output.urls = this.theme.getUrls(project);
|
|
22
36
|
this.trigger(output);
|
|
@@ -26,7 +40,6 @@ async function render(project, outputDirectory) {
|
|
|
26
40
|
});
|
|
27
41
|
this.trigger(typedoc_1.RendererEvent.END, output);
|
|
28
42
|
}
|
|
29
|
-
this.theme = void 0;
|
|
30
43
|
}
|
|
31
44
|
const addTypedocReaders = (app) => {
|
|
32
45
|
app.options.addReader(new typedoc_1.TypeDocReader());
|
|
@@ -48,8 +61,31 @@ const addTypedocDeclarations = (app) => {
|
|
|
48
61
|
app.options.addDeclaration({
|
|
49
62
|
name: 'readmeTitle',
|
|
50
63
|
});
|
|
64
|
+
app.options.addDeclaration({
|
|
65
|
+
name: 'indexSlug',
|
|
66
|
+
});
|
|
51
67
|
app.options.addDeclaration({
|
|
52
68
|
name: 'sidebar',
|
|
53
69
|
type: typedoc_1.ParameterType.Mixed,
|
|
54
70
|
});
|
|
55
71
|
};
|
|
72
|
+
function removeDir(path) {
|
|
73
|
+
if (fs.existsSync(path)) {
|
|
74
|
+
const files = fs.readdirSync(path);
|
|
75
|
+
if (files.length > 0) {
|
|
76
|
+
files.forEach(function (filename) {
|
|
77
|
+
if (fs.statSync(path + '/' + filename).isDirectory()) {
|
|
78
|
+
removeDir(path + '/' + filename);
|
|
79
|
+
}
|
|
80
|
+
else {
|
|
81
|
+
fs.unlinkSync(path + '/' + filename);
|
|
82
|
+
}
|
|
83
|
+
});
|
|
84
|
+
fs.rmdirSync(path);
|
|
85
|
+
}
|
|
86
|
+
else {
|
|
87
|
+
fs.rmdirSync(path);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
exports.removeDir = removeDir;
|
package/dist/theme.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { SidebarOptions } from './types';
|
|
|
4
4
|
export declare class DocusaurusTheme extends MarkdownTheme {
|
|
5
5
|
sidebar: SidebarOptions;
|
|
6
6
|
readmeTitle: string;
|
|
7
|
+
indexSlug: string;
|
|
7
8
|
constructor(renderer: Renderer);
|
|
8
9
|
getRelativeUrl(url: string): string;
|
|
9
10
|
onPageEnd(page: PageEvent<DeclarationReflection>): void;
|
|
@@ -13,6 +14,7 @@ export declare class DocusaurusTheme extends MarkdownTheme {
|
|
|
13
14
|
getSidebarPosition(page: PageEvent<DeclarationReflection>): "0.5" | "0" | null;
|
|
14
15
|
getId(page: PageEvent): string;
|
|
15
16
|
getTitle(page: PageEvent): any;
|
|
17
|
+
getSlug(): string;
|
|
16
18
|
get mappings(): {
|
|
17
19
|
kind: ReflectionKind[];
|
|
18
20
|
isLeaf: boolean;
|
package/dist/theme.js
CHANGED
|
@@ -83,10 +83,7 @@ class DocusaurusTheme extends theme_1.MarkdownTheme {
|
|
|
83
83
|
title: pageTitle,
|
|
84
84
|
};
|
|
85
85
|
if (page.url === this.entryDocument) {
|
|
86
|
-
items = {
|
|
87
|
-
...items,
|
|
88
|
-
slug: '/' + path.relative(process.cwd(), this.out).replace(/\\/g, '/') + '/',
|
|
89
|
-
};
|
|
86
|
+
items = { ...items, slug: this.getSlug() };
|
|
90
87
|
}
|
|
91
88
|
if (sidebarLabel && sidebarLabel !== pageTitle) {
|
|
92
89
|
items = { ...items, sidebar_label: sidebarLabel };
|
|
@@ -137,6 +134,15 @@ class DocusaurusTheme extends theme_1.MarkdownTheme {
|
|
|
137
134
|
}
|
|
138
135
|
return (0, front_matter_1.getPageTitle)(page);
|
|
139
136
|
}
|
|
137
|
+
getSlug() {
|
|
138
|
+
if (this.indexSlug) {
|
|
139
|
+
return this.indexSlug;
|
|
140
|
+
}
|
|
141
|
+
if (this.out === process.cwd()) {
|
|
142
|
+
return '/';
|
|
143
|
+
}
|
|
144
|
+
return `/${path.relative(process.cwd(), this.out).replace(/\\/g, '/')}/`;
|
|
145
|
+
}
|
|
140
146
|
get mappings() {
|
|
141
147
|
return super.mappings.map((mapping) => {
|
|
142
148
|
if (mapping.kind.includes(typedoc_1.ReflectionKind.Namespace)) {
|
|
@@ -158,6 +164,9 @@ __decorate([
|
|
|
158
164
|
__decorate([
|
|
159
165
|
(0, typedoc_1.BindOption)('readmeTitle')
|
|
160
166
|
], DocusaurusTheme.prototype, "readmeTitle", void 0);
|
|
167
|
+
__decorate([
|
|
168
|
+
(0, typedoc_1.BindOption)('indexSlug')
|
|
169
|
+
], DocusaurusTheme.prototype, "indexSlug", void 0);
|
|
161
170
|
exports.DocusaurusTheme = DocusaurusTheme;
|
|
162
171
|
const writeCategoryYaml = (categoryPath, label, position) => {
|
|
163
172
|
const yaml = [`label: "${label}"`];
|
package/dist/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docusaurus-plugin-typedoc",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.6",
|
|
4
4
|
"description": "A Docusaurus v2 plugin to build API documentation with TypeDoc.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"build": "rm -rf ./dist && tsc",
|
|
29
29
|
"build-and-test": "yarn run build && yarn run test",
|
|
30
30
|
"test:init": "rm -rf test/site && npx @docusaurus/init@latest init test/site classic",
|
|
31
|
-
"test:demo:start": "
|
|
32
|
-
"test:demo:build": "
|
|
31
|
+
"test:demo:start": "yarn run build && cd test/site && yarn run start",
|
|
32
|
+
"test:demo:build": "yarn run build && cd test/site && yarn run build && yarn run serve",
|
|
33
33
|
"test": "jest --colors"
|
|
34
34
|
},
|
|
35
35
|
"author": "Thomas Grey",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"typescript",
|
|
43
43
|
"api"
|
|
44
44
|
],
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "eece3f13ce3b48ac51c119b432869983fc45cc6d"
|
|
46
46
|
}
|