export function deleteFile (project, path) {
  if (!project) {
    console.error('Project is required to delete a file.')
    return {type: DELETE_FILE_FAILURE, payload: {message: 'Project is required to delete file.'}}
  }