@contractkit/openapi-to-ck 0.9.2 → 0.9.3

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.
@@ -11,8 +11,8 @@ $ tsup src/index.ts src/plugin.ts --format esm --sourcemap --dts && tsc --emitDe
11
11
  ESM dist/index.js.map 71.00 B
12
12
  ESM dist/plugin.js.map 4.95 KB
13
13
  ESM dist/chunk-76CPOLZK.js.map 119.89 KB
14
- ESM ⚡️ Build success in 331ms
14
+ ESM ⚡️ Build success in 277ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 7186ms
16
+ DTS ⚡️ Build success in 8653ms
17
17
  DTS dist/index.d.ts 9.00 KB
18
18
  DTS dist/plugin.d.ts 128.00 B
@@ -3,17 +3,17 @@ $ vitest run --coverage
3
3
   RUN  v4.1.5 /home/runner/work/ContractKit/ContractKit/packages/openapi-to-ck
4
4
  Coverage enabled with v8
5
5
 
6
- ✓ tests/schema-to-ast.test.ts (36 tests) 70ms
7
- ✓ tests/normalize.test.ts (6 tests) 58ms
6
+ ✓ tests/schema-to-ast.test.ts (36 tests) 73ms
7
+ ✓ tests/normalize.test.ts (6 tests) 64ms
8
+ ✓ tests/tag-splitter.test.ts (5 tests) 85ms
8
9
  ✓ tests/ast-to-ck.test.ts (45 tests) 200ms
9
- ✓ tests/tag-splitter.test.ts (5 tests) 57ms
10
- ✓ tests/convert.test.ts (16 tests) 172ms
11
- ✓ tests/circular-refs.test.ts (8 tests) 24ms
10
+ ✓ tests/convert.test.ts (16 tests) 170ms
11
+ ✓ tests/circular-refs.test.ts (8 tests) 30ms
12
12
 
13
13
   Test Files  6 passed (6)
14
14
   Tests  116 passed (116)
15
-  Start at  17:06:40
16
-  Duration  6.21s (transform 1.97s, setup 0ms, import 9.06s, tests 580ms, environment 12ms)
15
+  Start at  15:07:02
16
+  Duration  6.83s (transform 3.49s, setup 0ms, import 10.45s, tests 621ms, environment 25ms)
17
17
 
18
18
   % Coverage report from v8
19
19
  -------------------|---------|----------|---------|---------|-------------------------------------------------------------
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @contractkit/openapi-to-ck
2
2
 
3
+ ## 0.9.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [23e4beb]
8
+ - @contractkit/core@0.24.0
9
+
3
10
  ## 0.9.2
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractkit/openapi-to-ck",
3
- "version": "0.9.2",
3
+ "version": "0.9.3",
4
4
  "description": "Convert OpenAPI specs (2.0/3.0/3.1) to Contract Kit .ck files",
5
5
  "author": {
6
6
  "name": "Marooned Software",
@@ -29,11 +29,11 @@
29
29
  "dependencies": {
30
30
  "@scalar/openapi-parser": "^0.26.1",
31
31
  "yaml": "^2.8.3",
32
- "@contractkit/core": "0.23.0"
32
+ "@contractkit/core": "0.24.0"
33
33
  },
34
34
  "devDependencies": {
35
- "@repo/config-eslint": "0.3.1",
36
- "@repo/config-typescript": "0.1.0"
35
+ "@repo/config-typescript": "0.1.0",
36
+ "@repo/config-eslint": "0.3.1"
37
37
  },
38
38
  "scripts": {
39
39
  "build": "tsup src/index.ts src/plugin.ts --format esm --sourcemap --dts && tsc --emitDeclarationOnly --declaration",