File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
packages/flex-plugin-scripts/src/clients Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ lerna-debug.log
6666dist /
6767plugin-test /
6868** /node_modules
69+ .ultra.cache.json
6970
7071# Package Locks
7172package-lock.json
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ export interface BuildData {
1010 FunctionVersions : string [ ] ;
1111 AssetVersions : string [ ] ;
1212 Dependencies : object ;
13+ Runtime ?: string ;
1314}
1415
1516export default class BuildClient extends BaseClient {
@@ -33,6 +34,7 @@ export default class BuildClient extends BaseClient {
3334 */
3435 public create = ( data : BuildData ) : Promise < Build > => {
3536 return new Promise ( async ( resolve , reject ) => {
37+ data . Runtime = 'node12' ;
3638 const newBuild = await this . _create ( data ) ;
3739 const sid = newBuild . sid ;
3840
You can’t perform that action at this time.
0 commit comments