Compare commits

..

1 Commits

Author SHA1 Message Date
Chromatic 05a82adb1e v10.6.1 2024-01-26 16:06:22 -08:00
3 changed files with 588 additions and 574 deletions
+5
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-cypress` test archives'
required: false
debug:
description: 'Output verbose debugging information'
@@ -66,6 +68,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-playwright` test archives'
required: false
preserveMissing:
description: 'Deprecated, use onlyChanged, onlyStoryNames or onlyStoryFiles instead'
required: false
+567 -565
View File
File diff suppressed because one or more lines are too long
+16 -9
View File
@@ -1,6 +1,6 @@
{
"name": "chromatic",
"version": "10.3.1",
"version": "10.6.1",
"description": "Automate visual testing across browsers. Gather UI feedback. Versioned documentation.",
"keywords": [
"storybook-addon",
@@ -38,7 +38,8 @@
"types": "./isChromatic.d.ts",
"require": "./isChromatic.js",
"import": "./isChromatic.mjs"
}
},
"./package.json": "./package.json"
},
"main": "isChromatic.js",
"module": "isChromatic.mjs",
@@ -204,6 +205,18 @@
"zen-observable": "^0.8.15",
"zod": "^3.22.2"
},
"peerDependencies": {
"chromatic-cypress": "^0.4.0 || ^1.0.0",
"chromatic-playwright": "^0.4.0 || ^1.0.0"
},
"peerDependenciesMeta": {
"chromatic-cypress": {
"optional": true
},
"chromatic-playwright": {
"optional": true
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
@@ -215,13 +228,7 @@
},
"plugins": [
"npm",
"released",
[
"exec",
{
"afterShipIt": "yarn run publish-action"
}
]
"released"
]
},
"docs": "https://www.chromatic.com/docs/cli",