File tree 1 file changed +11
-1
lines changed
1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,15 @@ if (process.argv.length < 3) {
17
17
}
18
18
const basePath = resolve ( process . argv [ 2 ] ) ;
19
19
const packageJsonPath = join ( basePath , 'package.json' ) ;
20
- const alphaPackages = [ ] ;
20
+ const alphaPackages = [
21
+ '@aws-lambda-powertools/batch' ,
22
+ '@aws-lambda-powertools/commons' ,
23
+ '@aws-lambda-powertools/idempotency' ,
24
+ '@aws-lambda-powertools/logger' ,
25
+ '@aws-lambda-powertools/metrics' ,
26
+ '@aws-lambda-powertools/parameters' ,
27
+ '@aws-lambda-powertools/tracer' ,
28
+ ] ;
21
29
const betaPackages = [ ] ;
22
30
23
31
( ( ) => {
@@ -44,6 +52,7 @@ const betaPackages = [];
44
52
types,
45
53
files,
46
54
private,
55
+ type,
47
56
} = pkgJson ;
48
57
49
58
let version = originalVersion ;
@@ -71,6 +80,7 @@ const betaPackages = [];
71
80
main,
72
81
types,
73
82
files,
83
+ type,
74
84
} ;
75
85
76
86
// Not all utilities have these fields, so only add them if they exist to avoid
You can’t perform that action at this time.
0 commit comments