File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
5
5
6
6
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
7
7
8
- ## [ 0.2.9 ] 2023-09-03
8
+ ## [ 0.2.10 ] 2023-09-03
9
9
10
10
- fix manual setup build
11
11
## [ 0.2.8] 2023-09-03
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @baselime/lambda-node-opentelemetry" ,
3
- "version" : " 0.2.9 " ,
3
+ "version" : " 0.2.10 " ,
4
4
"description" : " OpenTelemetry auto tracer for Node.JS based AWS Lambda functions" ,
5
+ "types" : " index.d.ts" ,
6
+ "main" : " index.js" ,
5
7
"keywords" : [
6
8
" nodejs" ,
7
9
" aws-lambda" ,
10
12
],
11
13
"files" : [
12
14
" lambda-wrapper.js" ,
13
- " index.js"
15
+ " index.js" ,
16
+ " index.d.ts"
14
17
],
15
18
"type" : " module" ,
16
19
"scripts" : {
17
- "tsc" : " tsc --p ./tsconfig.json" ,
20
+ "tsc" : " tsc --declaration --emitDeclarationOnly --p ./tsconfig.json" ,
18
21
"build:handler" : " npm run build:esm && npm run build:cjs" ,
19
22
"build:esm" : " esbuild src/handler.mjs --bundle --minify --platform=node --target=node18 --outfile=dist/handler.mjs --metafile=meta.json --format=esm" ,
20
23
"build:cjs" : " esbuild src/handler.cjs --bundle --minify --platform=node --target=node18 --outfile=dist/handler.cjs --metafile=meta.json --format=cjs" ,
21
24
"distribute" : " mkdir -p layer-dir/nodejs/node_modules/@baselime/lambda-node-opentelemetry && cp -r dist/* layer-dir/nodejs/node_modules/@baselime/lambda-node-opentelemetry && cp -r dist/* ." ,
22
25
"build:tracer" : " esbuild src/lambda-wrapper.ts src/index.ts --bundle --minify --platform=node --target=node18 --format=cjs --outdir=dist --metafile=meta.json" ,
23
- "build" : " npm run build:handler && npm run build:tracer && npm run distribute" ,
26
+ "build" : " npm run build:handler && npm run build:tracer && npm run tsc && npm run distribute" ,
24
27
"deploy" : " sst deploy" ,
25
28
"deploy:uat" : " npm run build && npx tsx multi-region-deploy.ts uat" ,
26
29
"deploy:prod" : " npm run build && npx tsx multi-region-deploy.ts prod" ,
You can’t perform that action at this time.
0 commit comments