Skip to content

Commit

Permalink
fix: [cxx-parser] Add missing export (#7)
Browse files Browse the repository at this point in the history
Add missing export:
- `cxx_terra_node_ext`
- `cxx_parser_ext`
  • Loading branch information
littleGnAl authored Sep 18, 2023
1 parent 6174cb3 commit 31c373f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cxx-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agoraio-extensions/cxx-parser",
"version": "0.1.2",
"version": "0.1.3",
"description": "",
"main": "src/index.js",
"scripts": {
Expand Down
6 changes: 2 additions & 4 deletions cxx-parser/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
export * from "./cxx_terra_node";
export * from "./cxx_terra_node_ext";
export * from "./cxx_parser_configs";
export * from "./cxx_parser";

import { CXXParser } from "./cxx_parser";

export default CXXParser;
export * from "./cxx_parser_ext";

0 comments on commit 31c373f

Please sign in to comment.