Skip to content

Commit f247e62

Browse files
committed
[0.4.x] fix: autodetect nodejs runtime
1 parent 067d013 commit f247e62

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/index.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import {
66
download,
77
Lambda,
88
BuildV3,
9-
PrepareCache
9+
PrepareCache,
10+
getNodeVersion
1011
} from '@vercel/build-utils';
1112
import {
1213
getPhpFiles,
@@ -113,6 +114,7 @@ export const build: BuildV3 = async ({
113114
}
114115

115116
console.log('🐘 Creating lambda');
117+
const nodeVersion = await getNodeVersion(workPath);
116118

117119
const lambda = new Lambda({
118120
files: {
@@ -123,7 +125,7 @@ export const build: BuildV3 = async ({
123125
...runtimeFiles
124126
},
125127
handler: 'launcher.launcher',
126-
runtime: 'nodejs18.x',
128+
runtime: nodeVersion.runtime,
127129
environment: {
128130
NOW_ENTRYPOINT: entrypoint,
129131
NOW_PHP_DEV: meta.isDev ? '1' : '0'

0 commit comments

Comments
 (0)