File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 4
4
5
5
6
6
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
+
7
18
publish :
8
19
executor :
9
20
name : node/default
@@ -35,6 +46,10 @@ workflows:
35
46
filters :
36
47
tags :
37
48
only : /.*/
49
+ - build :
50
+ filters :
51
+ tags :
52
+ only : /.*/
38
53
# TODO add a dry-run step to non-tagged changes
39
54
# - publish-dry-run:
40
55
# requires:
@@ -44,7 +59,9 @@ workflows:
44
59
# only: /.*/
45
60
- publish :
46
61
context : manwaring-npm
47
- requires : [node/test]
62
+ requires :
63
+ - node/test
64
+ - build
48
65
filters :
49
66
branches :
50
67
ignore : /.*/
Original file line number Diff line number Diff line change
1
+ export * from './v1' ;
2
+ export * from './v2-http' ;
Original file line number Diff line number Diff line change @@ -3,5 +3,4 @@ export * from './authorizer';
3
3
export * from './cloudformation' ;
4
4
export * from './dynamodb-stream' ;
5
5
export * from './generic' ;
6
- export * from './httpApi' ;
7
6
export * from './sns' ;
You can’t perform that action at this time.
0 commit comments