diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-02-16 08:37:37 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-02-16 09:03:14 -0400 |
commit | 8294eeb70d6822c76393f4cf81bd233cb7803e16 (patch) | |
tree | 6556df66536a786c949a64dde2cd586110802eb3 | |
parent | f0df9ef7bbd6d8e4381663282d0173064509c0df (diff) |
write: repl: clean up import order
-rw-r--r-- | src/write/build-modes/repl.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/write/build-modes/repl.js b/src/write/build-modes/repl.js index ec23a375..98056d4b 100644 --- a/src/write/build-modes/repl.js +++ b/src/write/build-modes/repl.js @@ -31,14 +31,13 @@ import * as os from 'node:os'; import * as path from 'node:path'; import * as repl from 'node:repl'; -import {logWarn} from '#cli'; -import {debugComposite} from '#composite'; - import _find, {bindFind} from '#find'; import CacheableObject from '#cacheable-object'; -import thingConstructors from '#things'; +import {logWarn} from '#cli'; +import {debugComposite} from '#composite'; import * as serialize from '#serialize'; import * as sugar from '#sugar'; +import thingConstructors from '#things'; import * as wikiDataUtils from '#wiki-data'; export async function getContextAssignments({ |