Skip to content

Commit 3a1382f

Browse files
authored
chore: add missing export file
1 parent 65526e6 commit 3a1382f

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

packages/jmespath/src/index.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
export { search } from './search.js';
2+
export {
3+
JMESPathError,
4+
LexerError,
5+
ParseError,
6+
IncompleteExpressionError,
7+
ArityError,
8+
VariadicArityError,
9+
JMESPathTypeError,
10+
EmptyExpressionError,
11+
UnknownFunctionError,
12+
} from './errors.js';

packages/jmespath/typedoc.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"../../typedoc.base.json"
44
],
55
"entryPoints": [
6-
"./src/search.ts",
7-
"./src/errors.ts",
6+
"./src/index.ts",
87
"./src/types.ts",
98
"./src/envelopes.ts",
109
"./src/Functions.ts",

0 commit comments

Comments
 (0)