Compare commits

..

1 Commits

Author SHA1 Message Date
Chromatic 95f238da20 v11.8.0 2024-09-10 19:56:45 +00:00
3 changed files with 1188 additions and 917 deletions
+11
View File
@@ -23,6 +23,8 @@ inputs:
required: false
configFile:
description: 'Path from where to load the Chromatic config JSON file.'
cypress:
description: 'Run build against `@chromatic-com/cypress` test archives'
required: false
debug:
description: 'Output verbose debugging information'
@@ -45,6 +47,9 @@ inputs:
externals:
description: 'Disable TurboSnap when any of these files have changed since the baseline build'
required: false
fileHashing:
description: 'Whether to apply file hashing to skip uploading unchanged files (default: true)'
required: false
forceRebuild:
description: 'Do not skip build when a rebuild is detected'
required: false
@@ -66,6 +71,9 @@ inputs:
onlyStoryFiles:
description: 'Only run a single story or a subset of stories by their filename(s)'
required: false
playwright:
description: 'Run build against `@chromatic-com/playwright` test archives'
required: false
preserveMissing:
description: 'Deprecated, use onlyChanged, onlyStoryNames or onlyStoryFiles instead'
required: false
@@ -78,6 +86,9 @@ inputs:
skip:
description: 'Skip Chromatic tests, but mark the commit as passing'
required: false
skipUpdateCheck:
description: 'Skips Chromatic CLI update check'
required: false
storybookBaseDir:
description: 'Relative path from repository root to Storybook project root'
required: false
+1138 -855
View File
File diff suppressed because one or more lines are too long
+39 -62
View File
@@ -1,6 +1,6 @@
{
"name": "chromatic",
"version": "10.2.2",
"version": "11.8.0",
"description": "Automate visual testing across browsers. Gather UI feedback. Versioned documentation.",
"keywords": [
"storybook-addon",
@@ -16,13 +16,16 @@
},
"repository": {
"type": "git",
"url": "https://github.com/chromaui/chromatic-cli.git"
"url": "git+https://github.com/chromaui/chromatic-cli.git"
},
"license": "MIT",
"author": "Chromatic <support@chromatic.com>",
"author": {
"name": "Chromatic",
"email": "support@chromatic.com"
},
"exports": {
".": {
"types": "./dist/node.d.ts",
"types": "./isChromatic.d.ts",
"require": "./isChromatic.js",
"import": "./isChromatic.mjs"
},
@@ -35,7 +38,8 @@
"types": "./isChromatic.d.ts",
"require": "./isChromatic.js",
"import": "./isChromatic.mjs"
}
},
"./package.json": "./package.json"
},
"main": "isChromatic.js",
"module": "isChromatic.mjs",
@@ -64,58 +68,22 @@
"isChromatic.mjs",
"isChromatic.d.ts"
],
"scripts": {
"build": "tsup",
"build-storybook": "build-storybook -s static",
"build-test-storybook": "cross-env SMOKE_TEST=true build-storybook -o test-storybook",
"build-subdir": "cd subdir ; yarn build ; cd ..",
"chromatic": "./dist/bin.js",
"chromatic-prebuilt": "./dist/bin.js --storybook-build-dir=\"storybook-static\"",
"chromatic-staging": "CHROMATIC_INDEX_URL=https://www.staging-chromatic.com ./dist/bin.js",
"chromatic-verbose": "cross-env LOG_LEVEL=verbose ./dist/bin.js",
"lint": "yarn lint:js .storybook bin-src node-src test-stories ./isChromatic.js ./isChromatic.mjs",
"lint:js": "cross-env NODE_ENV=production eslint --fix --cache --cache-location=.cache/eslint --ext .js,.json,.mjs,.ts,.cjs --report-unused-disable-directives",
"lint:package": "sort-package-json",
"release": "yarn run build && auto shipit",
"publish-action": "./scripts/publish-action.mjs",
"trace": "./dist/bin.js trace",
"trim-stats": "./dist/bin.js trim-stats-file",
"storybook": "start-storybook -p 9009 -s static",
"test": "vitest run && vitest run -c vitest.no-threads.config.ts",
"prepare": "husky install && npm run build",
"dev": "tsup --watch",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.ts": [
"yarn lint:js --fix"
],
"*.js": [
"yarn lint:js --fix"
],
"*.json": [
"yarn lint:js --fix"
],
"package.json": [
"yarn lint:package"
]
},
"resolutions": {
"any-observable": "^0.5.1"
},
"dependencies": {},
"devDependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.0.0",
"@antfu/ni": "^0.21.5",
"@auto-it/exec": "^11.0.4",
"@auto-it/slack": "^11.1.6",
"@discoveryjs/json-ext": "^0.5.7",
"@storybook/addon-essentials": "^6.5.6",
"@storybook/builder-webpack5": "^6.5.6",
"@storybook/csf-tools": "^7.0.12",
"@storybook/linter-config": "^3.1.2",
"@storybook/manager-webpack5": "^6.5.6",
"@storybook/react": "^6.5.6",
"@storybook/addon-essentials": "^8.1.5",
"@storybook/addon-webpack5-compiler-swc": "^1.0.3",
"@storybook/csf-tools": "^8.1.5",
"@storybook/linter-config": "^4.0.0",
"@storybook/react": "^8.1.5",
"@storybook/react-webpack5": "^8.1.5",
"@tsconfig/node16": "^16.1.1",
"@types/archiver": "^5.3.1",
"@types/async-retry": "^1.4.3",
@@ -126,15 +94,20 @@
"@types/node": "18.x",
"@types/picomatch": "^2.3.0",
"@types/progress-stream": "^2.0.2",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.3.9",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@vitest/coverage-v8": "^0.34.4",
"ansi-html": "0.0.8",
"any-observable": "^0.5.1",
"archiver": "^5.3.0",
"async-retry": "^1.3.3",
"auto": "^11.0.4",
"auto": "^11.0.5",
"boxen": "^7.1.1",
"chalk": "^4.1.2",
"clean-package": "^2.2.0",
"cpy": "^8.1.2",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.2",
@@ -150,6 +123,8 @@
"execa": "^7.2.0",
"fake-tag": "^2.0.0",
"filesize": "^10.1.0",
"find-up": "^7.0.0",
"formdata-node": "^6.0.3",
"fs-extra": "^10.0.0",
"https-proxy-agent": "^7.0.2",
"husky": "^7.0.0",
@@ -157,6 +132,7 @@
"junit-report-builder": "2.1.0",
"lint-staged": "^11.1.2",
"listr": "0.14.3",
"listr-update-renderer": "^0.5.0",
"meow": "^9.0.0",
"mock-fs": "^5.1.2",
"no-proxy": "^1.0.3",
@@ -171,6 +147,7 @@
"pluralize": "^8.0.0",
"prettier": "^2.3.2",
"progress-stream": "^2.0.0",
"prompts": "^2.4.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
@@ -179,6 +156,7 @@
"slash": "^3.0.0",
"snyk-nodejs-lockfile-parser": "^1.52.1",
"sort-package-json": "1.50.0",
"storybook": "^8.1.5",
"string-argv": "^0.3.1",
"strip-ansi": "6.0.0",
"tmp-promise": "3.0.2",
@@ -196,23 +174,22 @@
"zen-observable": "^0.8.15",
"zod": "^3.22.2"
},
"peerDependencies": {
"@chromatic-com/cypress": "^0.*.* || ^1.0.0",
"@chromatic-com/playwright": "^0.*.* || ^1.0.0"
},
"peerDependenciesMeta": {
"@chromatic-com/cypress": {
"optional": true
},
"@chromatic-com/playwright": {
"optional": true
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"auto": {
"baseBranch": "main",
"plugins": [
"npm",
"released",
[
"exec",
{
"afterShipIt": "yarn run publish-action"
}
]
]
},
"docs": "https://www.chromatic.com/docs/cli",
"storybook": {
"icon": "https://user-images.githubusercontent.com/263385/101995175-2e087800-3c96-11eb-9a33-9860a1c3ce62.gif",