diff --git a/.changeset/bundler-shutdown.md b/.changeset/bundler-shutdown.md index f578e77dc..853a1f8b2 100644 --- a/.changeset/bundler-shutdown.md +++ b/.changeset/bundler-shutdown.md @@ -2,4 +2,4 @@ "@bigtest/bundler": patch --- -The `try`/`finally` in `Bundler` was not wrapping the code that it should have; switch to using `ensure()` API. \ No newline at end of file +The `try`/`finally` in `Bundler` was not wrapping the code that it should have; fix this by wrapping more. \ No newline at end of file diff --git a/packages/bundler/src/bundler.ts b/packages/bundler/src/bundler.ts index 2eabbd011..2efcb4c6c 100644 --- a/packages/bundler/src/bundler.ts +++ b/packages/bundler/src/bundler.ts @@ -2,7 +2,6 @@ import { Operation, resource } from 'effection'; import { on } from '@effection/events'; import { subscribe, Subscribable, SymbolSubscribable, ChainableSubscription } from '@effection/subscription'; import { Channel } from '@effection/channel'; -import { ensure } from '@bigtest/effection'; import { watch, RollupWatchOptions, RollupWatcherEvent, RollupWatcher } from 'rollup'; import resolve from '@rollup/plugin-node-resolve'; import * as commonjs from '@rollup/plugin-commonjs';