Skip to content

Commit

Permalink
remove "node:" builtin prefix (#970)
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Oct 31, 2022
1 parent 9ff288f commit 4f9c0bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -23,6 +23,9 @@ jobs:
node-version: [14, 16, 18]
webpack-version: ['5']
include:
- node-version: "14.15.0" # The minimum supported node version
webpack-version: latest
os: ubuntu-latest
- node-version: latest
webpack-version: latest
os: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion src/cache.js
Expand Up @@ -13,7 +13,7 @@ const zlib = require("zlib");
const crypto = require("crypto");
const findCacheDir = require("find-cache-dir");
const { promisify } = require("util");
const { readFile, writeFile, mkdir } = require("node:fs/promises");
const { readFile, writeFile, mkdir } = require("fs/promises");

const transform = require("./transform");
// Lazily instantiated when needed
Expand Down

0 comments on commit 4f9c0bf

Please sign in to comment.