Skip to content

Commit 8779c0d

Browse files
committed
chore: update release script to mark all utilities as alpha
1 parent 878dccd commit 8779c0d

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

Diff for: .github/scripts/release_patch_package_json.js

+11-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,15 @@ if (process.argv.length < 3) {
1717
}
1818
const basePath = resolve(process.argv[2]);
1919
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+
];
2129
const betaPackages = [];
2230

2331
(() => {
@@ -44,6 +52,7 @@ const betaPackages = [];
4452
types,
4553
files,
4654
private,
55+
type,
4756
} = pkgJson;
4857

4958
let version = originalVersion;
@@ -71,6 +80,7 @@ const betaPackages = [];
7180
main,
7281
types,
7382
files,
83+
type,
7484
};
7585

7686
// Not all utilities have these fields, so only add them if they exist to avoid

0 commit comments

Comments
 (0)