Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5c6ec06f45 | |||
| 688adae582 | |||
| 8a2b82547a | |||
| f191a0224b | |||
| eea1606238 | |||
| 0794e6939f | |||
| 5ec258af08 | |||
| 93712e3766 | |||
| a8ce9c58f5 | |||
| f1f9e3277e | |||
| 9f1ad414f2 | |||
| 07791f8243 | |||
| 4c20b95e9d | |||
| ac86f2ff0a | |||
| bc2d84ad2b | |||
| 1c807fb41f | |||
| 4ffe736a2a | |||
| 070fa3e7f7 |
+2880
File diff suppressed because it is too large
Load Diff
+7
-1
@@ -18,6 +18,9 @@ inputs:
|
||||
buildCommand:
|
||||
description: 'The command that builds your Storybook (when your build command does not exist in "scripts" of your package.json)'
|
||||
required: false
|
||||
chromaticSha:
|
||||
description: 'The git SHA of the commit that should be tested in Chromatic. Defaults to the SHA of the current branch tip on which the action is running. Use with caution, as it may yield unexpected results.'
|
||||
required: false
|
||||
configFile:
|
||||
description: 'Path from where to load the Chromatic config JSON file.'
|
||||
cypress:
|
||||
@@ -113,6 +116,9 @@ inputs:
|
||||
uploadMetadata:
|
||||
description: 'Upload Chromatic metadata files as part of the published Storybook'
|
||||
required: false
|
||||
vitest:
|
||||
description: 'Run build against `@chromatic-com/vitest` test archives'
|
||||
required: false
|
||||
workingDir:
|
||||
description: 'Working directory for the package.json file'
|
||||
required: false
|
||||
@@ -151,4 +157,4 @@ outputs:
|
||||
|
||||
runs:
|
||||
main: action/register.js
|
||||
using: node20 # Sync with `target` in tsup.config.ts
|
||||
using: node24
|
||||
|
||||
+815
-766
File diff suppressed because one or more lines are too long
+25
-18
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "chromatic",
|
||||
"version": "13.2.0",
|
||||
"version": "16.3.0",
|
||||
"description": "Automate visual testing across browsers. Gather UI feedback. Versioned documentation.",
|
||||
"keywords": [
|
||||
"storybook-addon",
|
||||
@@ -69,7 +69,8 @@
|
||||
"isChromatic.d.ts"
|
||||
],
|
||||
"resolutions": {
|
||||
"any-observable": "^0.5.1"
|
||||
"any-observable": "^0.5.1",
|
||||
"lodash": "4.17.21"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@actions/core": "^1.10.0",
|
||||
@@ -103,7 +104,7 @@
|
||||
"@types/ws": "^8",
|
||||
"@typescript-eslint/eslint-plugin": "^6.8.0",
|
||||
"@typescript-eslint/parser": "^6.8.0",
|
||||
"@vitest/coverage-v8": "^2.0.5",
|
||||
"@vitest/coverage-v8": "^4.1.2",
|
||||
"ansi-html": "0.0.9",
|
||||
"any-observable": "^0.5.1",
|
||||
"archiver": "^5.3.0",
|
||||
@@ -118,19 +119,21 @@
|
||||
"debug": "^4.3.2",
|
||||
"dotenv": "^16.4.5",
|
||||
"env-ci": "^11.1.0",
|
||||
"eslint": "^9.10.0",
|
||||
"eslint-config-prettier": "^9.0.0",
|
||||
"eslint-plugin-import": "^2.28.1",
|
||||
"eslint-plugin-jsdoc": "^48.2.6",
|
||||
"eslint-plugin-json": "^3.1.0",
|
||||
"eslint-plugin-no-secrets": "^1.0.2",
|
||||
"eslint-plugin-react": "^7.33.2",
|
||||
"eslint-plugin-security": "^3.0.0",
|
||||
"eslint-plugin-simple-import-sort": "^12.1.0",
|
||||
"eslint-plugin-sort-class-members": "^1.20.0",
|
||||
"eslint-plugin-unicorn": "^53.0.0",
|
||||
"eslint": "^9.39.4",
|
||||
"eslint-config-prettier": "^10.1.8",
|
||||
"eslint-plugin-import": "^2.32.0",
|
||||
"eslint-plugin-jsdoc": "^62.4.1",
|
||||
"eslint-plugin-json": "^4.0.1",
|
||||
"eslint-plugin-no-secrets": "^2.2.1",
|
||||
"eslint-plugin-prettier": "^5.5.5",
|
||||
"eslint-plugin-react": "^7.37.5",
|
||||
"eslint-plugin-security": "^3.0.1",
|
||||
"eslint-plugin-simple-import-sort": "^12.1.1",
|
||||
"eslint-plugin-sort-class-members": "^1.21.0",
|
||||
"eslint-plugin-storybook": "^10.2.1",
|
||||
"eslint-plugin-unicorn": "^59.0.1",
|
||||
"esm": "^3.2.25",
|
||||
"execa": "^7.2.0",
|
||||
"execa": "^9.6.0",
|
||||
"fake-tag": "^2.0.0",
|
||||
"filesize": "^10.1.0",
|
||||
"find-up": "^7.0.0",
|
||||
@@ -179,9 +182,9 @@
|
||||
"typescript-eslint": "^7.11.0",
|
||||
"util-deprecate": "^1.0.2",
|
||||
"uuid": "^8.3.2",
|
||||
"vite": "^4.4.9",
|
||||
"vite": "^8.0.3",
|
||||
"vite-tsconfig-paths": "^5.1.4",
|
||||
"vitest": "^2.0.5",
|
||||
"vitest": "^4.1.2",
|
||||
"why-is-node-running": "^2.1.2",
|
||||
"ws": "^8.18.2",
|
||||
"xxhash-wasm": "^1.0.2",
|
||||
@@ -191,7 +194,8 @@
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@chromatic-com/cypress": "^0.*.* || ^1.0.0",
|
||||
"@chromatic-com/playwright": "^0.*.* || ^1.0.0"
|
||||
"@chromatic-com/playwright": "^0.*.* || ^1.0.0",
|
||||
"@chromatic-com/vitest": "^0.*.* || ^1.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@chromatic-com/cypress": {
|
||||
@@ -199,6 +203,9 @@
|
||||
},
|
||||
"@chromatic-com/playwright": {
|
||||
"optional": true
|
||||
},
|
||||
"@chromatic-com/vitest": {
|
||||
"optional": true
|
||||
}
|
||||
},
|
||||
"publishConfig": {
|
||||
|
||||
Reference in New Issue
Block a user