Compare commits

..

1 Commits

Author SHA1 Message Date
Chromatic e5269a1d11 v9.1.0 2023-12-01 12:36:44 +01:00
3 changed files with 704 additions and 810 deletions
-8
View File
@@ -21,11 +21,6 @@ inputs:
buildScriptName:
description: 'The npm script that builds your Storybook [build-storybook]'
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'
required: false
@@ -68,9 +63,6 @@ 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
+699 -771
View File
File diff suppressed because one or more lines are too long
+5 -31
View File
@@ -1,6 +1,6 @@
{
"name": "chromatic",
"version": "10.6.1",
"version": "9.1.0",
"description": "Automate visual testing across browsers. Gather UI feedback. Versioned documentation.",
"keywords": [
"storybook-addon",
@@ -16,13 +16,10 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/chromaui/chromatic-cli.git"
"url": "https://github.com/chromaui/chromatic-cli.git"
},
"license": "MIT",
"author": {
"name": "Chromatic",
"email": "support@chromatic.com"
},
"author": "Chromatic <support@chromatic.com>",
"exports": {
".": {
"types": "./dist/node.d.ts",
@@ -38,8 +35,7 @@
"types": "./isChromatic.d.ts",
"require": "./isChromatic.js",
"import": "./isChromatic.mjs"
},
"./package.json": "./package.json"
}
},
"main": "isChromatic.js",
"module": "isChromatic.mjs",
@@ -80,7 +76,7 @@
"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",
"release": "yarn run build && auto shipit && yarn run publish-action",
"publish-action": "./scripts/publish-action.mjs",
"trace": "./dist/bin.js trace",
"trim-stats": "./dist/bin.js trim-stats-file",
@@ -112,7 +108,6 @@
"@actions/core": "^1.10.0",
"@actions/github": "^5.0.0",
"@antfu/ni": "^0.21.5",
"@auto-it/exec": "^11.0.4",
"@discoveryjs/json-ext": "^0.5.7",
"@storybook/addon-essentials": "^6.5.6",
"@storybook/builder-webpack5": "^6.5.6",
@@ -130,7 +125,6 @@
"@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",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
@@ -139,7 +133,6 @@
"archiver": "^5.3.0",
"async-retry": "^1.3.3",
"auto": "^11.0.4",
"boxen": "^7.1.1",
"chalk": "^4.1.2",
"cpy": "^8.1.2",
"cross-env": "^7.0.3",
@@ -156,8 +149,6 @@
"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",
@@ -179,7 +170,6 @@
"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",
@@ -200,32 +190,16 @@
"vite": "^4.4.9",
"vitest": "^0.34.4",
"why-is-node-running": "^2.1.2",
"xxhash-wasm": "^1.0.2",
"yarn-or-npm": "^3.0.1",
"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/"
},
"auto": {
"baseBranch": "main",
"canary": {
"force": true
},
"plugins": [
"npm",
"released"