We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e03fca3 commit dd68e70Copy full SHA for dd68e70
bin/commands/generate.mjs
@@ -133,7 +133,9 @@ export default {
133
async action(opts) {
134
const docs = await loadAndParse(opts.input, opts.ignore);
135
const releases = await parseChangelog(opts.changelog);
136
- const typeMap = JSON.parse(await loadFromURL(opts.typeMap));
+
137
+ const rawTypeMap = await loadFromURL(opts.typeMap);
138
+ const typeMap = JSON.parse(rawTypeMap);
139
140
const index = opts.index && (await parseIndex(opts.index));
141
0 commit comments