Skip to content

Commit

Permalink
fix: Fix index exposing name
Browse files Browse the repository at this point in the history
  • Loading branch information
3y3 committed Sep 27, 2024
1 parent a2c49f9 commit 301120d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/indexer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class Indexer {
* @returns {{index: Index, registry: Registry}}
*/
release(lang: string) {
const index = 'self.indexData=' + JSON.stringify(this.indices[lang].build());
const index = 'self.index=' + JSON.stringify(this.indices[lang].build());
const registry = 'self.registry=' + JSON.stringify(this.docs[lang]);

return {index, registry};
Expand Down

0 comments on commit 301120d

Please sign in to comment.