From 692697eacc47a85bcbe6b506d50dd07f2cea54a5 Mon Sep 17 00:00:00 2001 From: Phil Dier Date: Fri, 20 Oct 2023 17:42:39 -0500 Subject: [PATCH] Fix npm_requirements not running npm install --- package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.py b/package.py index 20ba4fdf..9edb08e0 100644 --- a/package.py +++ b/package.py @@ -791,7 +791,7 @@ def commands_step(path, commands): prefix = claim.get('prefix_in_zip') pip_requirements = claim.get('pip_requirements') poetry_install = claim.get("poetry_install") - npm_requirements = claim.get('npm_package_json') + npm_requirements = claim.get('npm_requirements') runtime = claim.get('runtime', query.runtime) if pip_requirements and runtime.startswith('python'):