Skip to content

Commit

Permalink
build(scripts): use node: prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
metonym committed Nov 9, 2024
1 parent 9ebf696 commit 02d1a8b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/build-css.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
const fs = require("fs");
const fs = require("node:fs");
const path = require("node:path");
const sass = require("sass");
const autoprefixer = require("autoprefixer");
const postcss = require("postcss");
const path = require("path");

(async () => {
const scss = fs
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-docs.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const fs = require("fs");
const fs = require("node:fs");
const glob = require("glob");
const { sveld } = require("sveld");
const pkg = require("../package.json");
Expand Down

0 comments on commit 02d1a8b

Please sign in to comment.