• Given an .env file content, generates a new one with new values without removing already existing lines.

    Parameters

    • envFileContent: null | string

      .env file contents.

    • updatedValues: {
          [key: string]: string | undefined;
      }

      object containing new env variables values.

      • [key: string]: string | undefined

    Returns string