Skip to content

Commit 9553f82

Browse files
committed
fix bug where reachability analyses were not included in the rollup external dependencies
1 parent 719deba commit 9553f82

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.config/rollup.dist.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ async function copyExternalPackages() {
121121
[
122122
[blessedPath, ['lib/**/*.js', 'usr/**/**', 'vendor/**/*.js', 'LICENSE*']],
123123
[blessedContribPath, ['lib/**/*.js', 'index.js', 'LICENSE*']],
124-
[coanaPath, ['**/*.mjs']],
124+
[coanaPath, ['**/*.mjs', 'coana-repos/**/*']],
125125
[
126126
socketRegistryPath,
127127
[

src/constants.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ const lazyBlessedPath = () =>
451451

452452
const lazyCoanaBinPath = () =>
453453
// Lazily access constants.coanaPath.
454-
path.join(constants.coanaPath, 'cli.mjs')
454+
path.join(constants.coanaPath, 'cli-wrapper.mjs')
455455

456456
const lazyCoanaPath = () =>
457457
// Lazily access constants.externalPath.

0 commit comments

Comments
 (0)