Fixed imports

pull/73/head
MillenniumEarl 2021-02-20 18:24:24 +01:00
parent 209c3f0041
commit a37753a1bc
2 changed files with 6 additions and 6 deletions

View File

@ -7,10 +7,10 @@ import { readFileSync, writeFileSync, existsSync } from "fs";
import cheerio from "cheerio"; import cheerio from "cheerio";
// Modules from file // Modules from file
import shared, { DictType } from "./shared"; import shared, { DictType } from "./shared.js";
import { urls as f95url } from "./constants/url"; import { urls as f95url } from "./constants/url.js";
import { selectors as f95selector} from "./constants/css-selector"; import { selectors as f95selector} from "./constants/css-selector.js";
import { fetchHTML } from "./network-helper"; import { fetchHTML } from "./network-helper.js";
//#region Interface definitions //#region Interface definitions
/** /**

View File

@ -1,7 +1,7 @@
"use strict"; "use strict";
import { fetchLatest } from "./scripts/latest-fetch"; import { fetchLatest } from "./scripts/latest-fetch.js";
import SearchQuery from "./scripts/classes/search-query"; import SearchQuery from "./scripts/classes/search-query.js";
async function test() { async function test() {