Skip to content

Commit

Permalink
build(deps): lock file maintenance (#951)
Browse files Browse the repository at this point in the history
* build(deps): lock file maintenance

* Replace cheerio default imports

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Keegan Campbell <me@kfcampbell.com>
  • Loading branch information
renovate[bot] and kfcampbell authored Aug 16, 2024
1 parent c71fc0d commit 760f508
Show file tree
Hide file tree
Showing 4 changed files with 121 additions and 37 deletions.
2 changes: 1 addition & 1 deletion lib/get-html.mts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import got from "got";
import cheerio from "cheerio";
import * as cheerio from 'cheerio';
import * as prettier from "prettier";
import { State, cache } from "./index.mjs";

Expand Down
2 changes: 1 addition & 1 deletion lib/get-sections.mts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { strict as assert } from "assert";
import cheerio from "cheerio";
import * as cheerio from 'cheerio';
import { Section } from "./index.mjs";

export const getSections = (html: string): Section[] => {
Expand Down
2 changes: 1 addition & 1 deletion lib/section-to-webhook.mts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { strict as assert } from "assert";
import cheerio from "cheerio";
import * as cheerio from 'cheerio';
import { JSONSchema7TypeName } from "json-schema";
import TurndownService from "turndown";
import { Section, Webhook } from "./index.mjs";
Expand Down
152 changes: 118 additions & 34 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 760f508

Please sign in to comment.