diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b9770e23a2e..f908a22530a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,7 +8,7 @@ updates: interval: monthly commit-message: prefix: meta - open-pull-requests-limit: ${{secrets.OPEN_PR_LIMIT}} + open-pull-requests-limit: 0 - package-ecosystem: npm directory: /tools/eslint @@ -16,7 +16,7 @@ updates: interval: monthly commit-message: prefix: tools - open-pull-requests-limit: ${{secrets.OPEN_PR_LIMIT}} + open-pull-requests-limit: 0 groups: eslint: applies-to: version-updates @@ -29,7 +29,7 @@ updates: interval: monthly commit-message: prefix: tools - open-pull-requests-limit: ${{secrets.OPEN_PR_LIMIT}} + open-pull-requests-limit: 0 groups: lint-md: applies-to: version-updates diff --git a/doc/api/fs.md b/doc/api/fs.md index 78618afa43c..a28a923101f 100644 --- a/doc/api/fs.md +++ b/doc/api/fs.md @@ -21,16 +21,6 @@ import * as fs from 'node:fs/promises'; const fs = require('node:fs/promises'); ``` -To use the callback and sync APIs: - -```mjs -import * as fs from 'node:fs'; -``` - -```cjs -const fs = require('node:fs'); -``` - All file system operations have synchronous, callback, and promise-based forms, and are accessible using both CommonJS syntax and ES6 Modules (ESM).