Skip to content

Commit

Permalink
feat: allow fs module (#756)
Browse files Browse the repository at this point in the history
  • Loading branch information
tapiarafael authored Apr 16, 2024
1 parent 2ed1381 commit 51e6ed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deno-runtime/handlers/app/construct.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { sanitizeDeprecatedUsage } from '../../lib/sanitizeDeprecatedUsage.ts';
import { AppAccessorsInstance } from '../../lib/accessors/mod.ts';
import { Socket } from 'node:net';

const ALLOWED_NATIVE_MODULES = ['path', 'url', 'crypto', 'buffer', 'stream', 'net', 'http', 'https', 'zlib', 'util', 'punycode', 'os', 'querystring'];
const ALLOWED_NATIVE_MODULES = ['path', 'url', 'crypto', 'buffer', 'stream', 'net', 'http', 'https', 'zlib', 'util', 'punycode', 'os', 'querystring', 'fs'];
const ALLOWED_EXTERNAL_MODULES = ['uuid'];


Expand Down

0 comments on commit 51e6ed1

Please sign in to comment.