Skip to content

Commit

Permalink
upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
zuisong committed Dec 7, 2023
1 parent b0c2f7d commit 73b3cca
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 14 deletions.
2 changes: 1 addition & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"imports": {
"deno_std/": "https://deno.land/[email protected]/",
"esm.sh/": "https://esm.sh/v135/",
"rollup": "npm:@rollup/[email protected].0",
"rollup": "npm:@rollup/[email protected].1",
"@happy-dom/global-registrator": "npm:@happy-dom/global-registrator"
},
"scopes": {},
Expand Down
12 changes: 6 additions & 6 deletions deno.lock

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

3 changes: 1 addition & 2 deletions notion-kroki.user.js

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

2 changes: 1 addition & 1 deletion notion-kroki.user.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion rollup.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as swc from "npm:@swc/[email protected].99";
import * as swc from "npm:@swc/[email protected].100";
import { meta } from "./build-common.ts";
import { rollup } from "./deps.ts";
import denoResolve from "./rollup-deno-plugin.ts";
Expand Down
3 changes: 1 addition & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,8 @@ export function main(element: HTMLElement | null = null) {
_debug(`svgUrl:${svgUrl}`);
if (preSvgUrl === svgUrl) {
continue;
} else {
parentElement.removeChild(preCreatedNode);
}
parentElement.removeChild(preCreatedNode);
}

parentElement.appendChild(div);
Expand Down
2 changes: 1 addition & 1 deletion test/common/base-test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { afterEach, beforeEach, describe } from "deno_std/testing/bdd.ts";
import { init, tearDown } from "../common/dom-env-init.ts";
import { init, tearDown } from "./dom-env-init.ts";

export const baseTest = describe("base case", () => {
beforeEach(async () => {
Expand Down

0 comments on commit 73b3cca

Please sign in to comment.