We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 067d013 commit f247e62Copy full SHA for f247e62
src/index.ts
@@ -6,7 +6,8 @@ import {
6
download,
7
Lambda,
8
BuildV3,
9
- PrepareCache
+ PrepareCache,
10
+ getNodeVersion
11
} from '@vercel/build-utils';
12
import {
13
getPhpFiles,
@@ -113,6 +114,7 @@ export const build: BuildV3 = async ({
113
114
}
115
116
console.log('🐘 Creating lambda');
117
+ const nodeVersion = await getNodeVersion(workPath);
118
119
const lambda = new Lambda({
120
files: {
@@ -123,7 +125,7 @@ export const build: BuildV3 = async ({
123
125
...runtimeFiles
124
126
},
127
handler: 'launcher.launcher',
- runtime: 'nodejs18.x',
128
+ runtime: nodeVersion.runtime,
129
environment: {
130
NOW_ENTRYPOINT: entrypoint,
131
NOW_PHP_DEV: meta.isDev ? '1' : '0'
0 commit comments