summaryrefslogtreecommitdiff
path: root/ext/node
diff options
context:
space:
mode:
authorMarvin Hagemeister <marvin@deno.com>2024-01-21 21:48:48 +0100
committerGitHub <noreply@github.com>2024-01-21 21:48:48 +0100
commit692738232b0668c35fcc572cb651fe543a8b87f9 (patch)
treec5762504e3f149febd66df405c3fa69479fb0966 /ext/node
parent28f64171cb4292cc1e8cf59525b0b9990eff160f (diff)
fix(node/fs): promises not exporting fs constants (#21997)
<!-- Before submitting a PR, please read https://deno.com/manual/contributing 1. Give the PR a descriptive title. Examples of good title: - fix(std/http): Fix race condition in server - docs(console): Update docstrings - feat(doc): Handle nested reexports Examples of bad title: - fix #7123 - update docs - fix bugs 2. Ensure there is a related issue and it is referenced in the PR text. 3. Ensure there are tests that cover the changes. 4. Ensure `cargo test` passes. 5. Ensure `./tools/format.js` passes without changing files. 6. Ensure `./tools/lint.js` passes. 7. Open as a draft PR if your work is still in progress. The CI won't run all steps, but you can add '[ci]' to a commit message to force it to. 8. If you would like to run the benchmarks on the CI, add the 'ci-bench' label. --> We were missing the `constants` export in the promise `fs` API which is available in node. ```ts import { constants, promises } from "node:fs"; import { constants as fsPromiseConstants } from "node:fs/promises"; console.log(constants === promises.constants); // logs: true console.log(constants === fsPromiseConstants); // logs: true ``` Fixes https://github.com/denoland/deno/issues/21994
Diffstat (limited to 'ext/node')
-rw-r--r--ext/node/polyfills/fs.ts1
-rw-r--r--ext/node/polyfills/fs/promises.ts1
2 files changed, 2 insertions, 0 deletions
diff --git a/ext/node/polyfills/fs.ts b/ext/node/polyfills/fs.ts
index 01ac9912e..38a7a2bfb 100644
--- a/ext/node/polyfills/fs.ts
+++ b/ext/node/polyfills/fs.ts
@@ -137,6 +137,7 @@ const {
const promises = {
access: accessPromise,
+ constants,
copyFile: copyFilePromise,
cp: cpPromise,
open: openPromise,
diff --git a/ext/node/polyfills/fs/promises.ts b/ext/node/polyfills/fs/promises.ts
index 15f238194..ffdb862d8 100644
--- a/ext/node/polyfills/fs/promises.ts
+++ b/ext/node/polyfills/fs/promises.ts
@@ -2,6 +2,7 @@
import { promises as fsPromises } from "node:fs";
export const access = fsPromises.access;
+export const constants = fsPromises.constants;
export const copyFile = fsPromises.copyFile;
export const open = fsPromises.open;
export const opendir = fsPromises.opendir;