Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d77e1618d4 |
+5
-2
@@ -24,7 +24,7 @@ inputs:
|
||||
configFile:
|
||||
description: 'Path from where to load the Chromatic config JSON file.'
|
||||
cypress:
|
||||
description: 'Run build against `chromatic-cypress` test archives'
|
||||
description: 'Run build against `@chromatic-com/cypress` test archives'
|
||||
required: false
|
||||
debug:
|
||||
description: 'Output verbose debugging information'
|
||||
@@ -47,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
|
||||
@@ -69,7 +72,7 @@ inputs:
|
||||
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'
|
||||
description: 'Run build against `@chromatic-com/playwright` test archives'
|
||||
required: false
|
||||
preserveMissing:
|
||||
description: 'Deprecated, use onlyChanged, onlyStoryNames or onlyStoryFiles instead'
|
||||
|
||||
+682
-648
File diff suppressed because one or more lines are too long
+11
-9
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "chromatic",
|
||||
"version": "10.4.0",
|
||||
"version": "11.3.4",
|
||||
"description": "Automate visual testing across browsers. Gather UI feedback. Versioned documentation.",
|
||||
"keywords": [
|
||||
"storybook-addon",
|
||||
@@ -25,7 +25,7 @@
|
||||
},
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/node.d.ts",
|
||||
"types": "./isChromatic.d.ts",
|
||||
"require": "./isChromatic.js",
|
||||
"import": "./isChromatic.mjs"
|
||||
},
|
||||
@@ -38,7 +38,8 @@
|
||||
"types": "./isChromatic.d.ts",
|
||||
"require": "./isChromatic.js",
|
||||
"import": "./isChromatic.mjs"
|
||||
}
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"main": "isChromatic.js",
|
||||
"module": "isChromatic.mjs",
|
||||
@@ -84,7 +85,7 @@
|
||||
"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",
|
||||
"test": "vitest run --coverage && vitest run -c vitest.no-threads.config.ts",
|
||||
"prepare": "husky install && npm run build",
|
||||
"dev": "tsup --watch",
|
||||
"lint-staged": "lint-staged"
|
||||
@@ -133,11 +134,12 @@
|
||||
"@types/semver": "^7.3.9",
|
||||
"@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",
|
||||
"cpy": "^8.1.2",
|
||||
@@ -205,14 +207,14 @@
|
||||
"zod": "^3.22.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"chromatic-playwright": "^0.4.0 || ^1.0.0",
|
||||
"chromatic-cypress": "^0.4.0 || ^1.0.0"
|
||||
"@chromatic-com/cypress": "^0.*.* || ^1.0.0",
|
||||
"@chromatic-com/playwright": "^0.*.* || ^1.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"chromatic-playwright": {
|
||||
"@chromatic-com/cypress": {
|
||||
"optional": true
|
||||
},
|
||||
"chromatic-cypress": {
|
||||
"@chromatic-com/playwright": {
|
||||
"optional": true
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user