@knapsack/types 4.71.0--canary.4884.6344b42.0 → 4.71.0--canary.4483.d5328f4.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,41 @@
1
+ # v4.70.4 (Wed Oct 09 2024)
2
+
3
+ #### 🏠 Internal
4
+
5
+ - Replace json-schema-ref-parser [#4949](https://github.com/knapsack-labs/app-monorepo/pull/4949) ([@greylabel](https://github.com/greylabel))
6
+
7
+ #### Authors: 1
8
+
9
+ - Grant Gaudet ([@greylabel](https://github.com/greylabel))
10
+
11
+ ---
12
+
13
+ # v4.70.3 (Fri Oct 04 2024)
14
+
15
+ #### 🏠 Internal
16
+
17
+ - show figma file name in pattern admin tooltips [#4919](https://github.com/knapsack-labs/app-monorepo/pull/4919) ([@GormanDesign](https://github.com/GormanDesign))
18
+ - Update tiptap to ^2.8.0 [#4911](https://github.com/knapsack-labs/app-monorepo/pull/4911) ([@renovate[bot]](https://github.com/renovate[bot]))
19
+
20
+ #### Authors: 2
21
+
22
+ - [@renovate[bot]](https://github.com/renovate[bot])
23
+ - Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
24
+
25
+ ---
26
+
27
+ # v4.70.1 (Thu Oct 03 2024)
28
+
29
+ #### 🏠 Internal
30
+
31
+ - Update dependency @types/react to ^18.3.11 [#4891](https://github.com/knapsack-labs/app-monorepo/pull/4891) ([@renovate[bot]](https://github.com/renovate[bot]))
32
+
33
+ #### Authors: 1
34
+
35
+ - [@renovate[bot]](https://github.com/renovate[bot])
36
+
37
+ ---
38
+
1
39
  # v4.70.0 (Wed Oct 02 2024)
2
40
 
3
41
  #### 🚀 Enhancement
@@ -1,11 +1,9 @@
1
1
  #!/usr/bin/env node
2
2
  import * as TJS from 'typescript-json-schema'; // https://github.com/YousefED/typescript-json-schema
3
- import { resolve, relative, join, dirname } from 'path';
3
+ import { resolve, relative, join } from 'path';
4
4
  import fs from 'fs-extra';
5
- import $RefParser, { JSONSchema } from 'json-schema-ref-parser';
6
- import { fileURLToPath } from 'url';
5
+ import $RefParser, { JSONSchema } from '@apidevtools/json-schema-ref-parser';
7
6
 
8
- // const __dirname = dirname(fileURLToPath(import.meta.url));
9
7
  const { writeFile, readdirSync, remove, ensureDirSync } = fs;
10
8
 
11
9
  console.log('Start: converting TypeScript types to JSON Schemas');
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@knapsack/types",
3
3
  "description": "",
4
- "version": "4.71.0--canary.4884.6344b42.0",
4
+ "version": "4.71.0--canary.4483.d5328f4.0",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
@@ -38,23 +38,23 @@
38
38
  "test": "ava"
39
39
  },
40
40
  "dependencies": {
41
- "@knapsack/utils": "4.71.0--canary.4884.6344b42.0",
41
+ "@knapsack/utils": "4.71.0--canary.4483.d5328f4.0",
42
42
  "color-string": "^1.9.1",
43
43
  "immer": "^10.1.1",
44
44
  "superstruct": "^0.16.7"
45
45
  },
46
46
  "devDependencies": {
47
- "@knapsack/eslint-config-starter": "4.71.0--canary.4884.6344b42.0",
48
- "@knapsack/test-ava": "4.71.0--canary.4884.6344b42.0",
49
- "@knapsack/typescript-config-starter": "4.71.0--canary.4884.6344b42.0",
50
- "@tiptap/core": "^2.7.2",
47
+ "@apidevtools/json-schema-ref-parser": "^11.7.0",
48
+ "@knapsack/eslint-config-starter": "4.71.0--canary.4483.d5328f4.0",
49
+ "@knapsack/test-ava": "4.71.0--canary.4483.d5328f4.0",
50
+ "@knapsack/typescript-config-starter": "4.71.0--canary.4483.d5328f4.0",
51
+ "@tiptap/core": "^2.8.0",
51
52
  "@types/color-string": "^1.5.5",
52
53
  "@types/fs-extra": "^11.0.4",
53
- "@types/react": "^18.3.9",
54
+ "@types/react": "^18.3.11",
54
55
  "ava": "^6.1.3",
55
56
  "eslint": "^8.57.0",
56
57
  "fs-extra": "^11.2.0",
57
- "json-schema-ref-parser": "^6.1.0",
58
58
  "ts-node": "^10.9.2",
59
59
  "tsup": "^8.2.4",
60
60
  "typescript": "^5.5.4",
@@ -68,5 +68,5 @@
68
68
  "directory": "libs/types",
69
69
  "type": "git"
70
70
  },
71
- "gitHead": "6344b42a6dd323ce8133d55f49965e4a7a6437f0"
71
+ "gitHead": "d5328f4613805d0d9d68947278a9c05fc50897af"
72
72
  }