Skip to content

Commit

Permalink
Moved file
Browse files Browse the repository at this point in the history
  • Loading branch information
arduano committed Apr 18, 2024
1 parent 0f67a19 commit ac46bc4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions nixjs-rt/src/errors/builtins.ts → nixjs-rt/src/builtins.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { err } from ".";
import { abortError } from "./abort";
import { otherError } from "./other";
import { typeMismatchError } from "./typeError";
import { err } from "./errors";
import { abortError } from "./errors/abort";
import { otherError } from "./errors/other";
import { typeMismatchError } from "./errors/typeError";
import {
Attrset,
EvalCtx,
Expand All @@ -16,7 +16,7 @@ import {
NixType,
Path,
TRUE,
} from "../lib";
} from "./lib";

type BuiltinsRecord = Record<string, (param: NixType) => NixType>;

Expand Down
2 changes: 1 addition & 1 deletion nixjs-rt/src/lib.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getBuiltins } from "./errors/builtins";
import { getBuiltins } from "./builtins";
import { NixError, err } from "./errors";
import {
NixFunctionCallWithoutArgumentError,
Expand Down

0 comments on commit ac46bc4

Please sign in to comment.