Skip to content

Commit

Permalink
fix: use full relative file paths for imports
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Jun 11, 2021
1 parent 002d87c commit 4dd61b7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions bin/record.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ import { diff, diffString } from "json-diff";
import glob from "glob";
import humanize from "humanize-string";

import normalize from "../lib/normalize";
import normalize from "../lib/normalize/index.js";
import read from "../lib/read.js";
import recordScenario from "../lib/record-scenario";
import write from "../lib/write";
import recordScenario from "../lib/record-scenario.js";
import write from "../lib/write.js";

import minimist from "minimist";
const argv = minimist(process.argv.slice(2), {
Expand Down
4 changes: 2 additions & 2 deletions bin/remove-temporary-repositories.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import axios from "axios";

import env from "../lib/env";
import { regex } from "../lib/temporary-repository";
import env from "../lib/env.js";
import { regex } from "../lib/temporary-repository.js";

const github = axios.create({
baseURL: "https://api.github.com",
Expand Down

0 comments on commit 4dd61b7

Please sign in to comment.