Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: chromaui/chromatic-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.19.6
Choose a base ref
...
head repository: chromaui/chromatic-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.19.7
Choose a head ref
  • 4 commits
  • 3 files changed
  • 2 contributors

Commits on Jun 14, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3d986a3 View commit details
  2. Merge pull request #770 from chromaui/tom/fix-zero-exit-code

    Ensure we exit with a code at the end
    ghengeveld authored Jun 14, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    12a029a View commit details
  3. Update changelog

    ghengeveld committed Jun 14, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f358e58 View commit details
  4. 6.19.7

    ghengeveld committed Jun 14, 2023
    Copy the full SHA
    e61ba70 View commit details
Showing with 13 additions and 3 deletions.
  1. +9 −1 CHANGELOG.md
  2. +3 −1 bin-src/main.ts
  3. +1 −1 package.json
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# 6.19.5 - 2023-06-14
# 6.19.7 - 2023-06-14

- [770](https://github.com/chromaui/chromatic-cli/pull/770) Ensure we exit with a code at the end

# 6.19.6 - 2023-06-14

- [768](https://github.com/chromaui/chromatic-cli/pull/768) Add `isChromatic` exports

# 6.19.5 - 2023-06-14

- [763](https://github.com/chromaui/chromatic-cli/pull/763) Fix issue with onTaskComplete callback

# 6.19.5 - 2023-06-12

- [763](https://github.com/chromaui/chromatic-cli/pull/763) Fix issue with `onTaskComplete` callback
4 changes: 3 additions & 1 deletion bin-src/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { run } from '../node-src';

export async function main(argv: string[]) {
return run({ argv });
const { code } = await run({ argv });

process.exit(code);
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chromatic",
"version": "6.19.6",
"version": "6.19.7",
"description": "Automate visual testing across browsers. Gather UI feedback. Versioned documentation.",
"keywords": [
"storybook-addon",