Skip to content

Commit

Permalink
Merge pull request #3 from Battlesquid/fix/node-specifiers
Browse files Browse the repository at this point in the history
fix: add node specifiers to imports
  • Loading branch information
Battlesquid authored Sep 17, 2024
2 parents 166c752 + 4c2f572 commit 54b2016
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/browsers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import path from "path";
import path from "node:path";

export type BrowserType = "chrome" | "firefox" | "safari";

Expand Down
4 changes: 2 additions & 2 deletions src/request_builder.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { exec } from "child_process";
import path from "path";
import { exec } from "node:child_process";
import path from "node:path";
import { BINARY_PATH, Browser, BrowserType, getDefaultPlatformBrowser, resolveBrowser } from "./browsers";
import { BrowserPresets, Preset, PresetMap } from "./presets";

Expand Down

0 comments on commit 54b2016

Please sign in to comment.