babel-loader 9.0.0 → 9.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/cache.js +1 -1
  2. package/package.json +1 -1
package/lib/cache.js CHANGED
@@ -21,7 +21,7 @@ const {
21
21
  readFile,
22
22
  writeFile,
23
23
  mkdir
24
- } = require("node:fs/promises");
24
+ } = require("fs/promises");
25
25
  const transform = require("./transform");
26
26
  // Lazily instantiated when needed
27
27
  let defaultCacheDirectory = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babel-loader",
3
- "version": "9.0.0",
3
+ "version": "9.0.1",
4
4
  "description": "babel module loader for webpack",
5
5
  "files": [
6
6
  "lib"