Skip to content

Commit

Permalink
Sort imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
danfuzz committed Nov 21, 2024
1 parent 2997dda commit c62150b
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/loggy-intf/export/LogPayload.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// SPDX-License-Identifier: Apache-2.0

import { EventPayload, EventSource } from '@this/async';
import { IntfDeconstructable, Sexp } from '@this/sexp';
import { Moment } from '@this/quant';
import { IntfDeconstructable, Sexp } from '@this/sexp';
import { MustBe } from '@this/typey';
import { StackTrace } from '@this/valvis';

Expand Down
2 changes: 1 addition & 1 deletion src/loggy-intf/tests/LogPayload.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

import stripAnsi from 'strip-ansi';

import { Sexp } from '@this/sexp';
import { LogPayload, LogTag } from '@this/loggy-intf';
import { Moment } from '@this/quant';
import { Sexp } from '@this/sexp';
import { StackTrace } from '@this/valvis';


Expand Down
2 changes: 1 addition & 1 deletion src/loggy-intf/tests/LogTag.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import stripAnsi from 'strip-ansi';

import { Sexp } from '@this/sexp';
import { LogTag } from '@this/loggy-intf';
import { Sexp } from '@this/sexp';
import { StyledText } from '@this/texty';


Expand Down
3 changes: 2 additions & 1 deletion src/loggy-intf/tests/LoggedValueEncoder.test.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
// Copyright 2022-2024 the Lactoserv Authors (Dan Bornstein et alia).
// SPDX-License-Identifier: Apache-2.0

import { Duration } from '@this/quant';
import { LoggedValueEncoder } from '@this/loggy-intf';
import { Duration } from '@this/quant';
import { Sexp } from '@this/sexp';
import { VisitDef, VisitRef } from '@this/valvis';


function withNullObjectProtos(value) {
if (!(value && (typeof value === 'object'))) {
return value;
Expand Down
1 change: 1 addition & 0 deletions src/main-tester/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

import { inspect } from 'node:util';


process.on('warning', (warning) => {
if (warning.name === 'ExperimentalWarning') {
if (/VM Modules/.test(warning.message)) {
Expand Down
2 changes: 1 addition & 1 deletion src/net-util/export/DispatchInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// SPDX-License-Identifier: Apache-2.0

import { PathKey } from '@this/collections';
import { IntfDeconstructable, Sexp } from '@this/sexp';
import { IntfLogger } from '@this/loggy-intf';
import { IntfDeconstructable, Sexp } from '@this/sexp';
import { MustBe } from '@this/typey';

import { IncomingRequest } from '#x/IncomingRequest';
Expand Down
1 change: 1 addition & 0 deletions src/valvis/export/BaseDefRef.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import { IntfDeconstructable } from '@this/sexp';
import { Methods } from '@this/typey';


/**
* Forward declaration of this class, because `import`ing it would cause a
* circular dependency while loading.
Expand Down

0 comments on commit c62150b

Please sign in to comment.