Skip to content

Commit

Permalink
Fix breaking change caused by cheerio update
Browse files Browse the repository at this point in the history
  • Loading branch information
felddy committed Aug 15, 2024
1 parent 274377d commit d22f37c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/authenticate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Options:
// Imports
import { CookieJar, Cookie } from "tough-cookie";
import { FileCookieStore } from "tough-cookie-file-store";
import cheerio from "cheerio";
import * as cheerio from "cheerio";
import createLogger from "./logging.js";
import winston from "winston";
import docopt from "docopt";
Expand Down
2 changes: 1 addition & 1 deletion src/get_license.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Options:
// Imports
import { CookieJar } from "tough-cookie";
import { FileCookieStore } from "tough-cookie-file-store";
import cheerio from "cheerio";
import * as cheerio from "cheerio";
import createLogger from "./logging.js";
import docopt from "docopt";
import fetchCookie from "fetch-cookie";
Expand Down

0 comments on commit d22f37c

Please sign in to comment.