chore: add back files that are needed

This commit is contained in:
David Germain
2024-05-31 17:58:14 +02:00
committed by benfurber
parent 6aff3dd24c
commit 5b6cf4b837
3 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { writeFileSync } from 'fs'
import { resolve } from 'path'
import { FUNCTIONS_DIR } from '../paths'
import { runtimeConfigTest } from './model'
const runtimeConfigPath = resolve(FUNCTIONS_DIR, '.runtimeconfig.json')
writeFileSync(runtimeConfigPath, JSON.stringify(runtimeConfigTest))