Skip to content

Commit

Permalink
fix: compatibility with node 14-16 (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
mothershipper authored Dec 21, 2022
1 parent 79eca53 commit 7580f5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/trackingplans.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { debug as debugRegister } from "debug";
import stringify from "json-stable-stringify";
import { flow } from "lodash";
import fs from "node:fs";
import { promisify } from "node:util";
import fs from "fs";
import { promisify } from "util";
import sortKeys from "sort-keys";
import { isWrappedError } from "../common";
import {
Expand Down

0 comments on commit 7580f5b

Please sign in to comment.