@digitalsamba/validate 2.0.0-canary.4f07b04a06c3 → 2.0.0-canary.735dff13ef63
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/package.json +64 -64
- package/CHANGELOG.md +0 -251
package/package.json
CHANGED
|
@@ -1,66 +1,66 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
2
|
+
"name": "@digitalsamba/validate",
|
|
3
|
+
"description": "A runtime validation library by tldraw.",
|
|
4
|
+
"version": "2.0.0-canary.735dff13ef63",
|
|
5
|
+
"packageManager": "yarn@3.5.0",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "tldraw GB Ltd."
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://tldraw.dev",
|
|
10
|
+
"license": "Apache-2.0",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/digitalsamba/tldraw"
|
|
14
|
+
},
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/digitalsamba/tldraw/issues"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"tldraw",
|
|
20
|
+
"drawing",
|
|
21
|
+
"app",
|
|
22
|
+
"development",
|
|
23
|
+
"whiteboard",
|
|
24
|
+
"canvas",
|
|
25
|
+
"infinite"
|
|
26
|
+
],
|
|
27
|
+
"main": "dist-cjs/index.js",
|
|
28
|
+
"files": [
|
|
29
|
+
"dist-esm",
|
|
30
|
+
"dist-cjs",
|
|
31
|
+
"src"
|
|
32
|
+
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"test": "lazy inherit",
|
|
35
|
+
"test-coverage": "lazy inherit",
|
|
36
|
+
"build": "yarn run -T tsx ../../scripts/build-package.ts",
|
|
37
|
+
"build-api": "yarn run -T tsx ../../scripts/build-api.ts",
|
|
38
|
+
"prepack": "yarn run -T tsx ../../scripts/prepack.ts",
|
|
39
|
+
"postpack": "../../scripts/postpack.sh",
|
|
40
|
+
"pack-tarball": "yarn pack",
|
|
41
|
+
"lint": "yarn run -T tsx ../../scripts/lint.ts"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@digitalsamba/utils": "workspace:*"
|
|
45
|
+
},
|
|
46
|
+
"jest": {
|
|
47
|
+
"preset": "config/jest/node",
|
|
48
|
+
"setupFiles": [
|
|
49
|
+
"raf/polyfill"
|
|
50
|
+
],
|
|
51
|
+
"moduleNameMapper": {
|
|
52
|
+
"^~(.*)": "<rootDir>/src/$1"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"lazyrepo": "0.0.0-alpha.27"
|
|
57
|
+
},
|
|
58
|
+
"module": "dist-esm/index.mjs",
|
|
59
|
+
"source": "src/index.ts",
|
|
60
|
+
"exports": {
|
|
61
|
+
".": {
|
|
62
|
+
"import": "./dist-esm/index.mjs",
|
|
63
|
+
"require": "./dist-cjs/index.js"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
66
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,251 +0,0 @@
|
|
|
1
|
-
# v2.0.0-alpha.16 (Wed Oct 11 2023)
|
|
2
|
-
|
|
3
|
-
#### 🏠 Internal
|
|
4
|
-
|
|
5
|
-
- Publish api.json [#2034](https://github.com/tldraw/tldraw/pull/2034) ([@steveruizok](https://github.com/steveruizok))
|
|
6
|
-
|
|
7
|
-
#### Authors: 1
|
|
8
|
-
|
|
9
|
-
- Steve Ruiz ([@steveruizok](https://github.com/steveruizok))
|
|
10
|
-
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
# v2.0.0-alpha.15 (Fri Oct 06 2023)
|
|
14
|
-
|
|
15
|
-
### Release Notes
|
|
16
|
-
|
|
17
|
-
#### tldraw zero - package shuffle ([#1710](https://github.com/tldraw/tldraw/pull/1710))
|
|
18
|
-
|
|
19
|
-
- [@digitalsamba/editor] lots, wip
|
|
20
|
-
- [@digitalsamba/ui] gone, merged to tldraw/tldraw
|
|
21
|
-
- [@digitalsamba/polyfills] gone, merged to tldraw/editor
|
|
22
|
-
- [@digitalsamba/primitives] gone, merged to tldraw/editor / tldraw/tldraw
|
|
23
|
-
- [@digitalsamba/indices] gone, merged to tldraw/editor
|
|
24
|
-
- [@digitalsamba/file-format] gone, merged to tldraw/tldraw
|
|
25
|
-
|
|
26
|
-
---
|
|
27
|
-
|
|
28
|
-
#### 💥 Breaking Change
|
|
29
|
-
|
|
30
|
-
- tldraw zero - package shuffle [#1710](https://github.com/tldraw/tldraw/pull/1710) ([@steveruizok](https://github.com/steveruizok) [@SomeHats](https://github.com/SomeHats))
|
|
31
|
-
|
|
32
|
-
#### 🚀 Enhancement
|
|
33
|
-
|
|
34
|
-
- Add shapes to exports [#1776](https://github.com/tldraw/tldraw/pull/1776) ([@steveruizok](https://github.com/steveruizok))
|
|
35
|
-
|
|
36
|
-
#### Authors: 2
|
|
37
|
-
|
|
38
|
-
- alex ([@SomeHats](https://github.com/SomeHats))
|
|
39
|
-
- Steve Ruiz ([@steveruizok](https://github.com/steveruizok))
|
|
40
|
-
|
|
41
|
-
---
|
|
42
|
-
|
|
43
|
-
# v2.0.0-alpha.14 (Tue Jul 04 2023)
|
|
44
|
-
|
|
45
|
-
### Release Notes
|
|
46
|
-
|
|
47
|
-
#### [feature] add `meta` property to records ([#1627](https://github.com/tldraw/tldraw/pull/1627))
|
|
48
|
-
|
|
49
|
-
- todo
|
|
50
|
-
|
|
51
|
-
---
|
|
52
|
-
|
|
53
|
-
#### 🚀 Enhancement
|
|
54
|
-
|
|
55
|
-
- [feature] add `meta` property to records [#1627](https://github.com/tldraw/tldraw/pull/1627) ([@steveruizok](https://github.com/steveruizok))
|
|
56
|
-
|
|
57
|
-
#### Authors: 1
|
|
58
|
-
|
|
59
|
-
- Steve Ruiz ([@steveruizok](https://github.com/steveruizok))
|
|
60
|
-
|
|
61
|
-
---
|
|
62
|
-
|
|
63
|
-
# v2.0.0-alpha.13 (Wed Jun 28 2023)
|
|
64
|
-
|
|
65
|
-
### Release Notes
|
|
66
|
-
|
|
67
|
-
#### Styles API ([#1580](https://github.com/tldraw/tldraw/pull/1580))
|
|
68
|
-
|
|
69
|
-
-
|
|
70
|
-
|
|
71
|
-
#### mini `defineShape` API ([#1563](https://github.com/tldraw/tldraw/pull/1563))
|
|
72
|
-
|
|
73
|
-
[dev-facing, notes to come]
|
|
74
|
-
|
|
75
|
-
#### Rename tlvalidate to validate ([#1508](https://github.com/tldraw/tldraw/pull/1508))
|
|
76
|
-
|
|
77
|
-
- Rename tlvalidate to validate
|
|
78
|
-
|
|
79
|
-
---
|
|
80
|
-
|
|
81
|
-
#### 💥 Breaking Change
|
|
82
|
-
|
|
83
|
-
- Styles API [#1580](https://github.com/tldraw/tldraw/pull/1580) ([@SomeHats](https://github.com/SomeHats) [@steveruizok](https://github.com/steveruizok))
|
|
84
|
-
- mini `defineShape` API [#1563](https://github.com/tldraw/tldraw/pull/1563) ([@SomeHats](https://github.com/SomeHats))
|
|
85
|
-
- Rename tlvalidate to validate [#1508](https://github.com/tldraw/tldraw/pull/1508) ([@steveruizok](https://github.com/steveruizok))
|
|
86
|
-
|
|
87
|
-
#### ⚠️ Pushed to `main`
|
|
88
|
-
|
|
89
|
-
- update lazyrepo ([@ds300](https://github.com/ds300))
|
|
90
|
-
|
|
91
|
-
#### Authors: 3
|
|
92
|
-
|
|
93
|
-
- alex ([@SomeHats](https://github.com/SomeHats))
|
|
94
|
-
- David Sheldrick ([@ds300](https://github.com/ds300))
|
|
95
|
-
- Steve Ruiz ([@steveruizok](https://github.com/steveruizok))
|
|
96
|
-
|
|
97
|
-
---
|
|
98
|
-
|
|
99
|
-
# v2.0.0-alpha.12 (Mon Apr 03 2023)
|
|
100
|
-
|
|
101
|
-
#### 🐛 Bug Fix
|
|
102
|
-
|
|
103
|
-
- Make sure all types and build stuff get run in CI [#1548](https://github.com/tldraw/tldraw-lite/pull/1548) ([@SomeHats](https://github.com/SomeHats))
|
|
104
|
-
- add pre-commit api report generation [#1517](https://github.com/tldraw/tldraw-lite/pull/1517) ([@SomeHats](https://github.com/SomeHats))
|
|
105
|
-
- [chore] restore api extractor [#1500](https://github.com/tldraw/tldraw-lite/pull/1500) ([@steveruizok](https://github.com/steveruizok))
|
|
106
|
-
- David/publish good [#1488](https://github.com/tldraw/tldraw-lite/pull/1488) ([@ds300](https://github.com/ds300))
|
|
107
|
-
- [chore] alpha 10 [#1486](https://github.com/tldraw/tldraw-lite/pull/1486) ([@ds300](https://github.com/ds300))
|
|
108
|
-
- [chore] bump for alpha 8 [#1485](https://github.com/tldraw/tldraw-lite/pull/1485) ([@steveruizok](https://github.com/steveruizok))
|
|
109
|
-
- [improvement] API Reference docs [#1478](https://github.com/tldraw/tldraw-lite/pull/1478) ([@steveruizok](https://github.com/steveruizok))
|
|
110
|
-
- stop using broken-af turbo for publishing [#1476](https://github.com/tldraw/tldraw-lite/pull/1476) ([@ds300](https://github.com/ds300))
|
|
111
|
-
- [chore] add canary release script [#1423](https://github.com/tldraw/tldraw-lite/pull/1423) ([@ds300](https://github.com/ds300) [@steveruizok](https://github.com/steveruizok))
|
|
112
|
-
- [chore] upgrade yarn [#1430](https://github.com/tldraw/tldraw-lite/pull/1430) ([@ds300](https://github.com/ds300))
|
|
113
|
-
- repo cleanup [#1426](https://github.com/tldraw/tldraw-lite/pull/1426) ([@steveruizok](https://github.com/steveruizok))
|
|
114
|
-
|
|
115
|
-
#### Authors: 3
|
|
116
|
-
|
|
117
|
-
- alex ([@SomeHats](https://github.com/SomeHats))
|
|
118
|
-
- David Sheldrick ([@ds300](https://github.com/ds300))
|
|
119
|
-
- Steve Ruiz ([@steveruizok](https://github.com/steveruizok))
|
|
120
|
-
|
|
121
|
-
---
|
|
122
|
-
|
|
123
|
-
# @digitalsamba/tlvalidate
|
|
124
|
-
|
|
125
|
-
## 2.0.0-alpha.10
|
|
126
|
-
|
|
127
|
-
### Patch Changes
|
|
128
|
-
|
|
129
|
-
- fix some package build scripting
|
|
130
|
-
- Updated dependencies
|
|
131
|
-
- @digitalsamba/utils@2.0.0-alpha.10
|
|
132
|
-
|
|
133
|
-
## 2.0.0-alpha.9
|
|
134
|
-
|
|
135
|
-
### Patch Changes
|
|
136
|
-
|
|
137
|
-
- 4b4399b6e: redeploy with yarn to prevent package version issues
|
|
138
|
-
- Updated dependencies [4b4399b6e]
|
|
139
|
-
- @digitalsamba/utils@2.0.0-alpha.9
|
|
140
|
-
|
|
141
|
-
## 2.0.0-alpha.8
|
|
142
|
-
|
|
143
|
-
### Patch Changes
|
|
144
|
-
|
|
145
|
-
- Release day!
|
|
146
|
-
- Updated dependencies
|
|
147
|
-
- @digitalsamba/utils@2.0.0-alpha.8
|
|
148
|
-
|
|
149
|
-
## 2.0.0-alpha.7
|
|
150
|
-
|
|
151
|
-
### Patch Changes
|
|
152
|
-
|
|
153
|
-
- Bug fixes.
|
|
154
|
-
- Updated dependencies
|
|
155
|
-
- @digitalsamba/utils@2.0.0-alpha.7
|
|
156
|
-
|
|
157
|
-
## 2.0.0-alpha.6
|
|
158
|
-
|
|
159
|
-
### Patch Changes
|
|
160
|
-
|
|
161
|
-
- Add licenses.
|
|
162
|
-
- Updated dependencies
|
|
163
|
-
- @digitalsamba/utils@2.0.0-alpha.6
|
|
164
|
-
|
|
165
|
-
## 2.0.0-alpha.5
|
|
166
|
-
|
|
167
|
-
### Patch Changes
|
|
168
|
-
|
|
169
|
-
- Add CSS files to tldraw/tldraw.
|
|
170
|
-
- Updated dependencies
|
|
171
|
-
- @digitalsamba/utils@2.0.0-alpha.5
|
|
172
|
-
|
|
173
|
-
## 2.0.0-alpha.4
|
|
174
|
-
|
|
175
|
-
### Patch Changes
|
|
176
|
-
|
|
177
|
-
- Add children to tldraw/tldraw
|
|
178
|
-
- Updated dependencies
|
|
179
|
-
- @digitalsamba/utils@2.0.0-alpha.4
|
|
180
|
-
|
|
181
|
-
## 2.0.0-alpha.3
|
|
182
|
-
|
|
183
|
-
### Patch Changes
|
|
184
|
-
|
|
185
|
-
- Change permissions.
|
|
186
|
-
- Updated dependencies
|
|
187
|
-
- @digitalsamba/utils@2.0.0-alpha.3
|
|
188
|
-
|
|
189
|
-
## 2.0.0-alpha.2
|
|
190
|
-
|
|
191
|
-
### Patch Changes
|
|
192
|
-
|
|
193
|
-
- Add tldraw, editor
|
|
194
|
-
- Updated dependencies
|
|
195
|
-
- @digitalsamba/utils@2.0.0-alpha.2
|
|
196
|
-
|
|
197
|
-
## 0.1.0-alpha.11
|
|
198
|
-
|
|
199
|
-
### Patch Changes
|
|
200
|
-
|
|
201
|
-
- Fix stale reactors.
|
|
202
|
-
- Updated dependencies
|
|
203
|
-
- @digitalsamba/utils@0.1.0-alpha.11
|
|
204
|
-
|
|
205
|
-
## 0.1.0-alpha.10
|
|
206
|
-
|
|
207
|
-
### Patch Changes
|
|
208
|
-
|
|
209
|
-
- Fix type export bug.
|
|
210
|
-
- Updated dependencies
|
|
211
|
-
- @digitalsamba/utils@0.1.0-alpha.10
|
|
212
|
-
|
|
213
|
-
## 0.1.0-alpha.9
|
|
214
|
-
|
|
215
|
-
### Patch Changes
|
|
216
|
-
|
|
217
|
-
- Fix import bugs.
|
|
218
|
-
- Updated dependencies
|
|
219
|
-
- @digitalsamba/utils@0.1.0-alpha.9
|
|
220
|
-
|
|
221
|
-
## 0.1.0-alpha.8
|
|
222
|
-
|
|
223
|
-
### Patch Changes
|
|
224
|
-
|
|
225
|
-
- Changes validation requirements, exports validation helpers.
|
|
226
|
-
- Updated dependencies
|
|
227
|
-
- @digitalsamba/utils@0.1.0-alpha.8
|
|
228
|
-
|
|
229
|
-
## 0.1.0-alpha.7
|
|
230
|
-
|
|
231
|
-
### Patch Changes
|
|
232
|
-
|
|
233
|
-
- - Pre-pre-release update
|
|
234
|
-
- Updated dependencies
|
|
235
|
-
- @digitalsamba/utils@0.1.0-alpha.7
|
|
236
|
-
|
|
237
|
-
## 0.0.2-alpha.1
|
|
238
|
-
|
|
239
|
-
### Patch Changes
|
|
240
|
-
|
|
241
|
-
- Fix error with HMR
|
|
242
|
-
- Updated dependencies
|
|
243
|
-
- @digitalsamba/utils@0.0.2-alpha.1
|
|
244
|
-
|
|
245
|
-
## 0.0.2-alpha.0
|
|
246
|
-
|
|
247
|
-
### Patch Changes
|
|
248
|
-
|
|
249
|
-
- Initial release
|
|
250
|
-
- Updated dependencies
|
|
251
|
-
- @digitalsamba/utils@0.0.2-alpha.0
|