@systemfsoftware/storybook-gherkin 3.0.5 → 3.0.6

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 (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +7 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @systemfsoftware/storybook-gherkin
2
2
 
3
+ ## 3.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Bump the stryker catalog to pull in the latest patch releases of the stryker-js ecosystem.
8
+
3
9
  ## 3.0.5
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@systemfsoftware/storybook-gherkin",
3
3
  "license": "Apache-2.0",
4
- "version": "3.0.5",
4
+ "version": "3.0.6",
5
5
  "author": "Ryan Lee <drdgvhbh@gmail.com>",
6
6
  "repository": {
7
7
  "type": "git",
@@ -63,16 +63,17 @@
63
63
  "typescript": "^7",
64
64
  "vite": "^8",
65
65
  "vitest": "^5",
66
- "@systemfsoftware/all": "^2.1.1",
67
- "@systemfsoftware/tsconfig": "^1.3.5",
68
- "@systemfsoftware/oxlint-config": "^0.1.0"
66
+ "@systemfsoftware/all": "^2.1.2",
67
+ "@systemfsoftware/oxlint-config": "^0.1.0",
68
+ "@systemfsoftware/tsdown-config": "^0.1.0",
69
+ "@systemfsoftware/tsconfig": "^1.3.6"
69
70
  },
70
71
  "publishConfig": {
71
72
  "provenance": true
72
73
  },
73
74
  "scripts": {
74
75
  "clean": "rimraf dist",
75
- "build": "tsdown && pnpm dts:check && pnpm api:check",
76
+ "build": "tsdown -l warn && pnpm dts:check && pnpm api:check",
76
77
  "typecheck": "tsc --noEmit --incremental",
77
78
  "lint": "f=${OXLINT_FORMAT:-${AGENT:+agent}}; oxlint . --config oxlint.config.ts --format=${f:-default}",
78
79
  "lint:tsgo": "effect-tsgo diagnostics --project tsconfig.json --format ${TSGO_FORMAT:-text}",
@@ -80,7 +81,7 @@
80
81
  "dts:check": "node scripts/check-dts.mjs",
81
82
  "storybook": "storybook dev -p 6006 --no-open",
82
83
  "test:browser": "pnpm build && vitest run",
83
- "api:check": "tsdown && api-extractor run",
84
+ "api:check": "tsdown -l warn && api-extractor-quiet run",
84
85
  "api:update": "api-extractor run --local"
85
86
  }
86
87
  }