@histoire/plugin-percy 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +4 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@histoire/plugin-percy",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Histoire plugin to take screenshots with Percy for visual regression testing",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -30,15 +30,14 @@
30
30
  "puppeteer": "^13.7.0"
31
31
  },
32
32
  "devDependencies": {
33
- "histoire": "0.3.0",
33
+ "histoire": "0.3.1",
34
34
  "typescript": "^4.6.3"
35
35
  },
36
36
  "peerDependencies": {
37
- "histoire": "^0.3.0"
37
+ "histoire": "^0.3.1"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "rimraf dist && tsc -d",
41
41
  "watch": "tsc -d -w --sourceMap"
42
- },
43
- "readme": "# Histoire Screenshot with Percy for visual regression testing\n\nYou need the [Perci CLI](https://docs.percy.io/docs/cli-overview) installed to be able to send snapshots to Percy.\n\n\n```bash\npnpm add -D @histoire/plugin-percy\n```\n\nAdd the plugin in histoire config:\n\n```js\nimport { defineConfig } from 'histoire'\nimport { HstPercy } from '@histoire/plugin-percy'\n\nexport default defineConfig({\n plugins: [\n HstPercy({\n // Options here\n }),\n ],\n})\n```\n\nThen use the Percy CLI\n\n```bash\n# Replace `story:build` with the script to build the stories if you changed it\npercy exec pnpm run story:build\n```\n"
42
+ }
44
43
  }