File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+ ## [ 7.17.1] ( https://github.com/terraform-aws-modules/terraform-aws-lambda/compare/v7.17.0...v7.17.1 ) (2025-01-07)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * Rename npm_package_json to npm_requirements ([ #621 ] ( https://github.com/terraform-aws-modules/terraform-aws-lambda/issues/621 ) ) ([ 4bc61eb] ( https://github.com/terraform-aws-modules/terraform-aws-lambda/commit/4bc61eb58005e149dc1ca87ba79f42b0cba944fd ) )
11
+
5
12
## [ 7.17.0] ( https://github.com/terraform-aws-modules/terraform-aws-lambda/compare/v7.16.0...v7.17.0 ) (2024-12-08)
6
13
7
14
Original file line number Diff line number Diff line change @@ -821,7 +821,9 @@ def commands_step(path, commands):
821
821
pip_requirements = claim .get ("pip_requirements" )
822
822
poetry_install = claim .get ("poetry_install" )
823
823
poetry_export_extra_args = claim .get ("poetry_export_extra_args" , [])
824
- npm_requirements = claim .get ("npm_package_json" )
824
+ npm_requirements = claim .get (
825
+ "npm_requirements" , claim .get ("npm_package_json" )
826
+ )
825
827
runtime = claim .get ("runtime" , query .runtime )
826
828
827
829
if pip_requirements and runtime .startswith ("python" ):
You can’t perform that action at this time.
0 commit comments