-
Notifications
You must be signed in to change notification settings - Fork 50
fix: handle empty content and output routing regressions #2810
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
46f1da3
fix(core): handle empty content and output routing regressions
srod 43c11f7
fix(cli): address review feedback on benchmark output
srod 15a765c
fix(utils): expand array output patterns per format
srod bf8f3fe
fix(utils): avoid doubled indexed output extensions
srod 0422816
fix(utils): preserve explicit output extensions
srod badb0db
fix(utils): append missing array output extensions
srod File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| --- | ||
| "@node-minify/cli": patch | ||
| "@node-minify/core": patch | ||
| "@node-minify/run": patch | ||
| "@node-minify/utils": patch | ||
| --- | ||
|
|
||
| Fix empty in-memory content handling, benchmark CLI defaults, subprocess close handling, and multi-output routing regressions. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| /*! | ||
| * node-minify | ||
| * Copyright (c) 2011-2026 Rodolphe Stoclin | ||
| * MIT Licensed | ||
| */ | ||
|
|
||
| import { execFile } from "node:child_process"; | ||
| import path from "node:path"; | ||
| import { fileURLToPath } from "node:url"; | ||
| import { promisify } from "node:util"; | ||
| import { describe, expect, test } from "vitest"; | ||
|
|
||
| const execFileAsync = promisify(execFile); | ||
| const __dirname = path.dirname(fileURLToPath(import.meta.url)); | ||
| const repoRoot = path.resolve(__dirname, "../../.."); | ||
| const cliEntry = path.join(repoRoot, "packages/cli/src/bin/cli.ts"); | ||
|
|
||
| describe("cli benchmark command", () => { | ||
| test("should emit clean JSON and benchmark defaults when compressors are not provided", async () => { | ||
| const { stdout, stderr } = await execFileAsync( | ||
| "bun", | ||
| [ | ||
| cliEntry, | ||
| "benchmark", | ||
| "tests/fixtures/es5/fixture-1.js", | ||
| "--format", | ||
| "json", | ||
| "--iterations", | ||
| "1", | ||
| ], | ||
| { | ||
| cwd: repoRoot, | ||
| } | ||
| ); | ||
|
|
||
| expect(stderr).toBe(""); | ||
|
|
||
| const trimmedStdout = stdout.trim(); | ||
| const parsed = JSON.parse(trimmedStdout) as { | ||
| files: Array<{ | ||
| results: Array<{ compressor: string }>; | ||
| }>; | ||
| }; | ||
|
|
||
| expect( | ||
| parsed.files[0]?.results.map((result) => result.compressor) | ||
| ).toEqual(["terser", "esbuild", "swc", "oxc"]); | ||
| }, 60000); | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2. No changeset added
📘 Rule violation⛯ ReliabilityAgent Prompt
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools