Skip to content

Commit

Permalink
refactor: remove recursive imports
Browse files Browse the repository at this point in the history
  • Loading branch information
c4spar committed May 8, 2021
1 parent 907a7a1 commit a8226a4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions src/cd.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { $ } from "../mod.ts";

export function cd(path: string) {
if ($.verbose) {
console.log($.brightBlue("$ %s"), `cd ${path}`);
Expand Down
1 change: 0 additions & 1 deletion src/exec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { $ } from "../mod.ts";
import { iter } from "../deps.ts";
import { ProcessError } from "./process_error.ts";
import { ProcessOutput } from "./process_output.ts";
Expand Down
2 changes: 1 addition & 1 deletion types.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { $ as DZX } from "./mod.ts";
import type { $ as DZX } from "./mod.ts";

declare global {
const $: DZX;
Expand Down

0 comments on commit a8226a4

Please sign in to comment.