Skip to content

Commit 30b2058

Browse files
committed
update exports to fix build
1 parent 612e92f commit 30b2058

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

.circleci/config.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ orbs:
44
node: circleci/[email protected]
55

66
jobs:
7+
build:
8+
executor:
9+
name: node/default
10+
tag: lts
11+
steps:
12+
- checkout
13+
- node/install-packages
14+
- run:
15+
name: Build the library
16+
command: npm run build
17+
718
publish:
819
executor:
920
name: node/default
@@ -35,6 +46,10 @@ workflows:
3546
filters:
3647
tags:
3748
only: /.*/
49+
- build:
50+
filters:
51+
tags:
52+
only: /.*/
3853
# TODO add a dry-run step to non-tagged changes
3954
# - publish-dry-run:
4055
# requires:
@@ -44,7 +59,9 @@ workflows:
4459
# only: /.*/
4560
- publish:
4661
context: manwaring-npm
47-
requires: [node/test]
62+
requires:
63+
- node/test
64+
- build
4865
filters:
4966
branches:
5067
ignore: /.*/

src/api/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './v1';
2+
export * from './v2-http';

src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ export * from './authorizer';
33
export * from './cloudformation';
44
export * from './dynamodb-stream';
55
export * from './generic';
6-
export * from './httpApi';
76
export * from './sns';

0 commit comments

Comments
 (0)