@contractkit/openapi-to-ck 0.10.0 → 0.10.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.
@@ -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-JPI3AQ7V.js.map 120.62 KB
14
- ESM ⚡️ Build success in 200ms
14
+ ESM ⚡️ Build success in 243ms
15
15
  DTS Build start
16
- DTS ⚡️ Build success in 8418ms
16
+ DTS ⚡️ Build success in 8914ms
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) 104ms
7
- ✓ tests/normalize.test.ts (6 tests) 64ms
8
- ✓ tests/ast-to-ck.test.ts (45 tests) 180ms
9
- ✓ tests/tag-splitter.test.ts (5 tests) 60ms
10
- ✓ tests/convert.test.ts (17 tests) 155ms
11
- ✓ tests/circular-refs.test.ts (8 tests) 12ms
6
+ ✓ tests/schema-to-ast.test.ts (36 tests) 123ms
7
+ ✓ tests/normalize.test.ts (6 tests) 41ms
8
+ ✓ tests/tag-splitter.test.ts (5 tests) 71ms
9
+ ✓ tests/ast-to-ck.test.ts (45 tests) 243ms
10
+ ✓ tests/convert.test.ts (17 tests) 346ms
11
+ ✓ tests/circular-refs.test.ts (8 tests) 32ms
12
12
 
13
13
   Test Files  6 passed (6)
14
14
   Tests  117 passed (117)
15
-  Start at  16:09:44
16
-  Duration  6.07s (transform 3.31s, setup 0ms, import 9.03s, tests 574ms, environment 4ms)
15
+  Start at  17:32:00
16
+  Duration  7.22s (transform 2.75s, setup 0ms, import 9.95s, tests 857ms, environment 1ms)
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.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [ab69718]
8
+ - @contractkit/core@0.26.0
9
+
3
10
  ## 0.10.0
4
11
 
5
12
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractkit/openapi-to-ck",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
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.25.0"
32
+ "@contractkit/core": "0.26.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",