Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lib/deps.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ const npm = {};
const metarhia = {};

const deprecated = ['sys', 'domain', 'cluster', 'punycode', 'trace_events'];
const notDeprecated = (s) => !s.startsWith('_') && !deprecated.includes(s);
const internals = [...builtinModules].filter(notDeprecated);
const unsupported = [...deprecated, 'repl', 'node:sea'];
const isSupported = (s) => !s.startsWith('_') && !unsupported.includes(s);
const internals = [...builtinModules].filter(isSupported);

const optional = ['metasql', 'test'];
const core = ['metaconfiguration', 'metalog', 'metavm', 'metawatch'];
Expand Down
Loading