racejar 0.0.1 → 1.0.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.
package/CHANGELOG.md ADDED
@@ -0,0 +1,20 @@
1
+ # Changelog
2
+
3
+ ## [1.0.1](https://github.com/portabletext/editor/compare/racejar-v1.0.0...racejar-v1.0.1) (2024-11-26)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **deps:** update dependency vitest to ^2.1.5 ([bbceed5](https://github.com/portabletext/editor/commit/bbceed5c72ba6a9a9860fbbf89a939ae066d93f5))
9
+ * export ParameterType ([259c1a7](https://github.com/portabletext/editor/commit/259c1a7cce60a9c2106d6ee4c5d7c4d5da6c1917))
10
+
11
+ ## 1.0.0 (2024-11-26)
12
+
13
+
14
+ ### ⚠ BREAKING CHANGES
15
+
16
+ * release `racejar`
17
+
18
+ ### Features
19
+
20
+ * release `racejar` ([b8f3f78](https://github.com/portabletext/editor/commit/b8f3f7885482282ba100d9c0c7eda84cbd72fce8))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "racejar",
3
- "version": "0.0.1",
3
+ "version": "1.0.1",
4
4
  "description": "A testing framework agnostic Gherkin driver",
5
5
  "keywords": [
6
6
  "cucumber",
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "peerDependencies": {
48
48
  "@jest/globals": "^29.7.0",
49
- "vitest": "^2.1.1"
49
+ "vitest": "^2.1.5"
50
50
  },
51
51
  "scripts": {
52
52
  "check:lint": "biome lint .",
@@ -10,6 +10,8 @@ export type ParameterTypeConfig<TType = string> = {
10
10
  transform?: (...match: string[]) => TType
11
11
  }
12
12
 
13
+ export type {ParameterType}
14
+
13
15
  /**
14
16
  * @public
15
17
  */