diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-03 10:45:08 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-03 10:45:08 -0500 |
commit | 083b4749139213c6fefe80166d73f54604a85267 (patch) | |
tree | 046ee751868d35edc6f6b0a33903546f8e78d1a7 /dev/bin/build.js | |
parent | c563e5bfa5f4bded8901dccf2d589f89356574c9 (diff) |
Fix some import orderings
Diffstat (limited to 'dev/bin/build.js')
-rw-r--r-- | dev/bin/build.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/bin/build.js b/dev/bin/build.js index 47c08f3c..deb82618 100644 --- a/dev/bin/build.js +++ b/dev/bin/build.js @@ -19,10 +19,10 @@ import assert from 'assert'; import childProcess from 'child_process'; import fs from 'fs'; -import path from 'path'; -import readline from 'readline'; import JSZip from 'jszip'; import {fileURLToPath} from 'node:url'; +import path from 'path'; +import readline from 'readline'; import {buildLibs} from '../build-libs.js'; import {ManifestUtil} from '../manifest-util.js'; import {getAllFiles, getArgs, testMain} from '../util.js'; |