Skip to content

Commit

Permalink
fix(all): Use node protocol (#1824)
Browse files Browse the repository at this point in the history
  • Loading branch information
bukinoshita authored Dec 19, 2024
1 parent a0ab83d commit 2bc2ca4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { render } from "@react-email/render";
import { writeFileSync } from "fs";
import { writeFileSync } from "node:fs";
import { Bench } from "tinybench";
import EmailWithTailwind from "./emails/with-tailwind.js";
import { Tailwind as LocalTailwind } from "@react-email/tailwind";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import path from 'path';
import path from 'node:path';

export const getEnvVariablesForPreviewApp = (
relativePathToEmailsDirectory: string,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import path from "path";
import path from "node:path";
import shell from "shelljs";

/**
Expand Down

0 comments on commit 2bc2ca4

Please sign in to comment.