v12.0.0 - initial commit

This commit is contained in:
padreug 2025-12-31 19:04:13 +01:00
commit e2c49ea43c
1145 changed files with 97211 additions and 0 deletions

View file

@ -0,0 +1,30 @@
const fs = require('fs')
const os = require('os')
const path = require('path')
const _ = require('lodash/fp')
const setEnvVariable = (key, value, opts) => {
const ENV_PATH = !_.isNil(opts?.ENV_PATH)
? opts.ENV_PATH
: path.resolve(__dirname, '../.env')
const ENV_VARIABLES = fs.readFileSync(ENV_PATH, 'utf-8').split(os.EOL)
const target = ENV_VARIABLES.indexOf(
ENV_VARIABLES.find(line => line.match(new RegExp(`^${key}=`))),
)
if (target < 0) {
// The variable doesn't exist, add it
ENV_VARIABLES.push(`${key}=${value}`)
} else {
// .env already has that variable set, or at least has the definition of its key
//
// This is currently circumventing a possible bug on dotenv
// where the variables on this script were showing up as undefined on the first run despite the key existing,
// while on a second run they'd appear as empty string, as intended
ENV_VARIABLES.splice(target, 1, `${key}=${value}`)
}
fs.writeFileSync(ENV_PATH, ENV_VARIABLES.join(os.EOL))
}
module.exports = setEnvVariable