migrate to "export default"

also, set no-use-before-define in linter
This commit is contained in:
Girish Ramakrishnan
2026-02-14 15:43:24 +01:00
parent ddb46646fa
commit 36aa641cb9
231 changed files with 2846 additions and 2728 deletions
+5 -5
View File
@@ -1,17 +1,17 @@
/* global it:false */
import * as backupSites from '../backupsites.js';
import backupSites from '../backupsites.js';
import BoxError from '../boxerror.js';
import * as common from './common.js';
import common from './common.js';
import consumers from 'node:stream/consumers';
import { execSync } from 'node:child_process';
import expect from 'expect.js';
import * as filesystem from '../storage/filesystem.js';
import filesystem from '../storage/filesystem.js';
import fs from 'node:fs';
import * as gcs from '../storage/gcs.js';
import gcs from '../storage/gcs.js';
import os from 'node:os';
import path from 'node:path';
import * as s3 from '../storage/s3.js';
import s3 from '../storage/s3.js';
import safe from 'safetydance';
import stream from 'stream/promises';