Bump streamqueue from 1.1.2 to 2.0.0#1081
Conversation
Greptile SummaryThis PR bumps Confidence Score: 2/5Not safe to merge — the ESM-only v2.0.0 library will break the existing CommonJS require call and crash the production build pipeline streamqueue 2.0.0 is ESM-only; gulpfile.js uses CJS require('streamqueue'), which will throw ERR_REQUIRE_ESM at runtime. No migration of the call site or gulpfile module format was included, leaving the prod build broken. gulpfile.js — the require('streamqueue') call and surrounding task must be migrated to ESM or the project must stay on v1.x Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A["gulp prod task"] --> B["prod_minify_js task"]
B --> C["require('streamqueue') v2.0.0\n(ESM-only)"]
C --> D{"CJS require\ncompatible?"}
D -- "No (ERR_REQUIRE_ESM)" --> E["Build FAILS ❌"]
D -- "Yes (v1.x)" --> F["streamqueue({ objectMode: true }, ...streams)"]
F --> G["concat → uglify → dest"]
|
348a4c0 to
e2468c0
Compare
Bumps [streamqueue](https://github.com/nfroidure/StreamQueue) from 1.1.2 to 2.0.0. - [Changelog](https://github.com/nfroidure/streamqueue/blob/main/CHANGELOG.md) - [Commits](nfroidure/streamqueue@v1.1.2...v2.0.0) --- updated-dependencies: - dependency-name: streamqueue dependency-version: 2.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
e2468c0 to
6ca36a3
Compare
Bumps streamqueue from 1.1.2 to 2.0.0.
Changelog
Sourced from streamqueue's changelog.
Commits
3ba437a2.0.0984bdeefix(docs): fix markdown titlea969877refactor(core): complete refactoring