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
3 changes: 3 additions & 0 deletions scripts/create-standalone-package.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ const DIST_REQUIRED_PATHS = [
];
const DIST_ALLOWED_ENTRIES = new Set([
'cli.js',
// bin wrapper emitted by prepare-package.js that re-spawns `node --expose-gc
// cli.js`; ships in dist/ as the package `bin` entry (#4914).
'cli-entry.js',
// fzf fuzzy-search worker; esbuild emits it as a standalone entry that must
// sit next to cli.js so `new URL('./fzfWorker.js', ...)` resolves at runtime.
'fzfWorker.js',
Expand Down
Loading