Skip to content

Commit 8de9e3e

Browse files
committed
refactor: drop redundant end-of-file barrel exports in download-assets + util/fs
Both files had `export { name1, name2 }` blocks at EOF re-exporting already-file-private declarations. Since no other module consumes the re-exports, they're no-ops. Drop them. - packages/cli/scripts/download-assets.mts: ASSETS, downloadAsset, downloadAssets are CLI-script entry-point helpers (script invoked via `node`, not imported) - packages/cli/scripts/util/fs.mts: findUpSync is a local helper
1 parent ec2cedb commit 8de9e3e

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

packages/cli/scripts/download-assets.mts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,5 +266,3 @@ if (fileURLToPath(import.meta.url) === process.argv[1]) {
266266
process.exitCode = 1
267267
})
268268
}
269-
270-
export { ASSETS, downloadAsset, downloadAssets }

packages/cli/scripts/util/fs.mts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,3 @@ function findUpSync(name, options) {
4646
}
4747
return undefined
4848
}
49-
50-
export { findUpSync }

0 commit comments

Comments
 (0)