@react-native-windows/codegen 0.0.0-canary.12 → 0.0.0-canary.121

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.
Files changed (61) hide show
  1. package/CHANGELOG.md +1039 -12
  2. package/README.md +1 -1
  3. package/bin.js +0 -0
  4. package/lib-commonjs/Cli.d.ts +7 -0
  5. package/lib-commonjs/Cli.js +103 -0
  6. package/lib-commonjs/Cli.js.map +1 -0
  7. package/lib-commonjs/generators/AliasGen.d.ts +12 -0
  8. package/lib-commonjs/generators/AliasGen.js +115 -0
  9. package/lib-commonjs/generators/AliasGen.js.map +1 -0
  10. package/lib-commonjs/generators/AliasManaging.d.ts +15 -0
  11. package/lib-commonjs/generators/AliasManaging.js +49 -0
  12. package/lib-commonjs/generators/AliasManaging.js.map +1 -0
  13. package/lib-commonjs/generators/GenerateComponentWindows.d.ts +13 -0
  14. package/lib-commonjs/generators/GenerateComponentWindows.js +429 -0
  15. package/lib-commonjs/generators/GenerateComponentWindows.js.map +1 -0
  16. package/lib-commonjs/generators/GenerateNM2.d.ts +15 -0
  17. package/lib-commonjs/generators/GenerateNM2.js +145 -0
  18. package/lib-commonjs/generators/GenerateNM2.js.map +1 -0
  19. package/lib-commonjs/generators/GenerateTypeScript.d.ts +11 -0
  20. package/lib-commonjs/generators/GenerateTypeScript.js +166 -0
  21. package/lib-commonjs/generators/GenerateTypeScript.js.map +1 -0
  22. package/lib-commonjs/generators/ObjectTypes.d.ts +13 -0
  23. package/lib-commonjs/generators/ObjectTypes.js +81 -0
  24. package/lib-commonjs/generators/ObjectTypes.js.map +1 -0
  25. package/lib-commonjs/generators/ParamTypes.d.ts +13 -0
  26. package/lib-commonjs/generators/ParamTypes.js +183 -0
  27. package/lib-commonjs/generators/ParamTypes.js.map +1 -0
  28. package/lib-commonjs/generators/PropObjectTypes.d.ts +18 -0
  29. package/lib-commonjs/generators/PropObjectTypes.js +208 -0
  30. package/lib-commonjs/generators/PropObjectTypes.js.map +1 -0
  31. package/lib-commonjs/generators/ReturnTypes.d.ts +10 -0
  32. package/lib-commonjs/generators/ReturnTypes.js +29 -0
  33. package/lib-commonjs/generators/ReturnTypes.js.map +1 -0
  34. package/lib-commonjs/generators/ValidateConstants.d.ts +8 -0
  35. package/lib-commonjs/generators/ValidateConstants.js +38 -0
  36. package/lib-commonjs/generators/ValidateConstants.js.map +1 -0
  37. package/lib-commonjs/generators/ValidateMethods.d.ts +14 -0
  38. package/lib-commonjs/generators/ValidateMethods.js +112 -0
  39. package/lib-commonjs/generators/ValidateMethods.js.map +1 -0
  40. package/lib-commonjs/index.d.ts +39 -0
  41. package/lib-commonjs/index.js +227 -0
  42. package/lib-commonjs/index.js.map +1 -0
  43. package/package.json +38 -21
  44. package/src/Cli.ts +69 -232
  45. package/src/generators/AliasGen.ts +195 -0
  46. package/src/generators/AliasManaging.ts +75 -0
  47. package/src/generators/GenerateComponentWindows.ts +563 -0
  48. package/src/generators/GenerateNM2.ts +128 -131
  49. package/src/generators/GenerateTypeScript.ts +250 -0
  50. package/src/generators/ObjectTypes.ts +95 -37
  51. package/src/generators/ParamTypes.ts +311 -64
  52. package/src/generators/PropObjectTypes.ts +223 -0
  53. package/src/generators/ReturnTypes.ts +38 -41
  54. package/src/generators/ValidateConstants.ts +50 -0
  55. package/src/generators/ValidateMethods.ts +270 -0
  56. package/src/index.ts +415 -0
  57. package/.eslintrc.js +0 -4
  58. package/.vscode/launch.json +0 -23
  59. package/CHANGELOG.json +0 -705
  60. package/jest.config.js +0 -1
  61. package/tsconfig.json +0 -5
package/CHANGELOG.json DELETED
@@ -1,705 +0,0 @@
1
- {
2
- "name": "@react-native-windows/codegen",
3
- "entries": [
4
- {
5
- "date": "Wed, 08 Sep 2021 05:06:47 GMT",
6
- "tag": "@react-native-windows/codegen_v0.0.0-canary.12",
7
- "version": "0.0.0-canary.12",
8
- "comments": {
9
- "prerelease": [
10
- {
11
- "comment": "Set consistent node requirements on our packages",
12
- "author": "ngerlem@microsoft.com",
13
- "commit": "2974ea0ab58b546264b8d9a4a7c12ceeb0a02851",
14
- "package": "@react-native-windows/codegen"
15
- },
16
- {
17
- "comment": "Match Alert module with NativeDialogManagerWindowsSpec.h",
18
- "author": "53799235+ZihanChen-MSFT@users.noreply.github.com",
19
- "commit": "d085526651bb421f97b536a753365c7375b74828",
20
- "package": "@react-native-windows/codegen"
21
- }
22
- ],
23
- "patch": [
24
- {
25
- "comment": "Bump @rnw-scripts/jest-unittest-config to v1.2.4",
26
- "author": "ngerlem@microsoft.com",
27
- "commit": "2974ea0ab58b546264b8d9a4a7c12ceeb0a02851",
28
- "package": "@react-native-windows/codegen"
29
- },
30
- {
31
- "comment": "Bump @rnw-scripts/just-task to v2.2.1",
32
- "author": "ngerlem@microsoft.com",
33
- "commit": "2974ea0ab58b546264b8d9a4a7c12ceeb0a02851",
34
- "package": "@react-native-windows/codegen"
35
- },
36
- {
37
- "comment": "Bump @rnw-scripts/ts-config to v2.0.1",
38
- "author": "ngerlem@microsoft.com",
39
- "commit": "2974ea0ab58b546264b8d9a4a7c12ceeb0a02851",
40
- "package": "@react-native-windows/codegen"
41
- },
42
- {
43
- "comment": "Bump @rnw-scripts/eslint-config to v1.1.8",
44
- "author": "ngerlem@microsoft.com",
45
- "commit": "2974ea0ab58b546264b8d9a4a7c12ceeb0a02851",
46
- "package": "@react-native-windows/codegen"
47
- }
48
- ]
49
- }
50
- },
51
- {
52
- "date": "Fri, 03 Sep 2021 05:06:04 GMT",
53
- "tag": "@react-native-windows/codegen_v0.0.0-canary.11",
54
- "version": "0.0.0-canary.11",
55
- "comments": {
56
- "prerelease": [
57
- {
58
- "comment": "Generate aliased struct for turbo module",
59
- "author": "53799235+ZihanChen-MSFT@users.noreply.github.com",
60
- "commit": "b23b6bd01813b9d4ab843f397b7611e3e22d8508",
61
- "package": "@react-native-windows/codegen"
62
- }
63
- ]
64
- }
65
- },
66
- {
67
- "date": "Thu, 02 Sep 2021 05:08:16 GMT",
68
- "tag": "@react-native-windows/codegen_v0.0.0-canary.10",
69
- "version": "0.0.0-canary.10",
70
- "comments": {
71
- "none": [
72
- {
73
- "comment": "Remove path patch in rnw-codegen",
74
- "author": "53799235+ZihanChen-MSFT@users.noreply.github.com",
75
- "commit": "6cd806bb2486db76195edd47e949f6a9424fc6cb",
76
- "package": "@react-native-windows/codegen"
77
- }
78
- ]
79
- }
80
- },
81
- {
82
- "date": "Fri, 27 Aug 2021 05:06:34 GMT",
83
- "tag": "@react-native-windows/codegen_v0.0.0-canary.10",
84
- "version": "0.0.0-canary.10",
85
- "comments": {
86
- "none": [
87
- {
88
- "comment": "Bump react-native-tscodegen to catch up react-native 0.65",
89
- "author": "53799235+ZihanChen-MSFT@users.noreply.github.com",
90
- "commit": "420edbedb4cbe4b40f2541e466f98bd9e177e26a",
91
- "package": "@react-native-windows/codegen"
92
- }
93
- ]
94
- }
95
- },
96
- {
97
- "date": "Thu, 05 Aug 2021 05:07:20 GMT",
98
- "tag": "@react-native-windows/codegen_v0.0.0-canary.10",
99
- "version": "0.0.0-canary.10",
100
- "comments": {
101
- "prerelease": [
102
- {
103
- "comment": "Do not write codegen files if the contents have not changed, as this breaks incremental builds",
104
- "author": "30809111+acoates-ms@users.noreply.github.com",
105
- "commit": "3b92733ab97670e6eb2d944f65ff341994e80517",
106
- "package": "@react-native-windows/codegen"
107
- }
108
- ]
109
- }
110
- },
111
- {
112
- "date": "Sat, 24 Jul 2021 05:05:52 GMT",
113
- "tag": "@react-native-windows/codegen_v0.0.0-canary.9",
114
- "version": "0.0.0-canary.9",
115
- "comments": {
116
- "none": [
117
- {
118
- "comment": "Replace @rnw-scripts/jest-out-of-tree-resolver with @rnx-kit/jest-resolver",
119
- "author": "4123478+tido64@users.noreply.github.com",
120
- "commit": "a311022ebc0c1d8070d7e54312197f486c470d33",
121
- "package": "@react-native-windows/codegen"
122
- }
123
- ]
124
- }
125
- },
126
- {
127
- "date": "Fri, 11 Jun 2021 05:08:55 GMT",
128
- "tag": "@react-native-windows/codegen_v0.0.0-canary.9",
129
- "version": "0.0.0-canary.9",
130
- "comments": {
131
- "patch": [
132
- {
133
- "comment": "Bump @rnw-scripts/just-task to v2.2.0",
134
- "author": "ngerlem@microsoft.com",
135
- "commit": "3d7c8d8fcf14a3cbda83a93c85b0bcf1e4e4f829",
136
- "package": "@react-native-windows/codegen"
137
- }
138
- ]
139
- }
140
- },
141
- {
142
- "date": "Wed, 09 Jun 2021 05:10:07 GMT",
143
- "tag": "@react-native-windows/codegen_v0.0.0-canary.8",
144
- "version": "0.0.0-canary.8",
145
- "comments": {
146
- "patch": [
147
- {
148
- "comment": "Bump @rnw-scripts/just-task to v2.1.3",
149
- "author": "igklemen@microsoft.com",
150
- "commit": "2ba41a4f087cc3bf16cbe799575923fc7a626009",
151
- "package": "@react-native-windows/codegen"
152
- },
153
- {
154
- "comment": "Bump @rnw-scripts/jest-unittest-config to v1.2.3",
155
- "author": "igklemen@microsoft.com",
156
- "commit": "2ba41a4f087cc3bf16cbe799575923fc7a626009",
157
- "package": "@react-native-windows/codegen"
158
- }
159
- ]
160
- }
161
- },
162
- {
163
- "date": "Thu, 03 Jun 2021 05:09:47 GMT",
164
- "tag": "@react-native-windows/codegen_v0.0.0-canary.7",
165
- "version": "0.0.0-canary.7",
166
- "comments": {
167
- "prerelease": [
168
- {
169
- "comment": "Enable esModuleInterop Repo Wide",
170
- "author": "ngerlem@microsoft.com",
171
- "commit": "6c871e6ba27888804c776e5deeefbc7064e181d0",
172
- "package": "@react-native-windows/codegen"
173
- }
174
- ],
175
- "patch": [
176
- {
177
- "comment": "Bump @rnw-scripts/just-task to v2.1.2",
178
- "author": "ngerlem@microsoft.com",
179
- "commit": "b481f0a4ea68a8100860eb061902b715fca6652e",
180
- "package": "@react-native-windows/codegen"
181
- },
182
- {
183
- "comment": "Bump @rnw-scripts/ts-config to v2.0.0",
184
- "author": "ngerlem@microsoft.com",
185
- "commit": "6c871e6ba27888804c776e5deeefbc7064e181d0",
186
- "package": "@react-native-windows/codegen"
187
- },
188
- {
189
- "comment": "Bump @rnw-scripts/eslint-config to v1.1.7",
190
- "author": "ngerlem@microsoft.com",
191
- "commit": "b481f0a4ea68a8100860eb061902b715fca6652e",
192
- "package": "@react-native-windows/codegen"
193
- },
194
- {
195
- "comment": "Bump @rnw-scripts/jest-unittest-config to v1.2.2",
196
- "author": "ngerlem@microsoft.com",
197
- "commit": "b481f0a4ea68a8100860eb061902b715fca6652e",
198
- "package": "@react-native-windows/codegen"
199
- }
200
- ]
201
- }
202
- },
203
- {
204
- "date": "Fri, 21 May 2021 05:17:18 GMT",
205
- "tag": "@react-native-windows/codegen_v0.0.0-canary.6",
206
- "version": "0.0.0-canary.6",
207
- "comments": {
208
- "prerelease": [
209
- {
210
- "comment": "Integrate Apr 28 (base of 0.65) Nightly RN Build",
211
- "author": "ngerlem@microsoft.com",
212
- "commit": "5cc9c87a48b392d287fa953d8d23a8188b689545",
213
- "package": "@react-native-windows/codegen"
214
- }
215
- ],
216
- "patch": [
217
- {
218
- "comment": "Bump @rnw-scripts/just-task to v2.1.1",
219
- "author": "ngerlem@microsoft.com",
220
- "commit": "5cc9c87a48b392d287fa953d8d23a8188b689545",
221
- "package": "@react-native-windows/codegen"
222
- },
223
- {
224
- "comment": "Bump @rnw-scripts/jest-unittest-config to v1.2.1",
225
- "author": "ngerlem@microsoft.com",
226
- "commit": "5cc9c87a48b392d287fa953d8d23a8188b689545",
227
- "package": "@react-native-windows/codegen"
228
- }
229
- ]
230
- }
231
- },
232
- {
233
- "date": "Thu, 13 May 2021 05:11:48 GMT",
234
- "tag": "@react-native-windows/codegen_v0.0.0-canary.5",
235
- "version": "0.0.0-canary.5",
236
- "comments": {
237
- "prerelease": [
238
- {
239
- "comment": "Hook up view component codegen",
240
- "author": "30809111+acoates-ms@users.noreply.github.com",
241
- "commit": "36e48e2715549fe72544ac35296a62e22acd8c4e",
242
- "package": "@react-native-windows/codegen"
243
- }
244
- ]
245
- }
246
- },
247
- {
248
- "date": "Thu, 04 Mar 2021 05:05:53 GMT",
249
- "tag": "@react-native-windows/codegen_v0.0.0-canary.4",
250
- "version": "0.0.0-canary.4",
251
- "comments": {
252
- "prerelease": [
253
- {
254
- "comment": "Update yargs version used and patch y18n version 4.0.0 to 4.0.1 as used by detox of transitive dependencies to address https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-7774",
255
- "author": "dannyvv@microsoft.com",
256
- "commit": "e834e7c206a0f1405bf4bbf406cb7b11bf413d94",
257
- "package": "@react-native-windows/codegen"
258
- }
259
- ]
260
- }
261
- },
262
- {
263
- "date": "Thu, 11 Feb 2021 05:08:29 GMT",
264
- "tag": "@react-native-windows/codegen_v0.0.0-canary.3",
265
- "version": "0.0.0-canary.3",
266
- "comments": {
267
- "patch": [
268
- {
269
- "comment": "Bump @rnw-scripts/just-task to v2.1.0",
270
- "author": "ngerlem@microsoft.com",
271
- "commit": "ab41a9b88db59cba0eae1ff7a59c1b550cc8c2bf",
272
- "package": "@react-native-windows/codegen"
273
- },
274
- {
275
- "comment": "Bump @rnw-scripts/jest-unittest-config to v1.2.0",
276
- "author": "ngerlem@microsoft.com",
277
- "commit": "ab41a9b88db59cba0eae1ff7a59c1b550cc8c2bf",
278
- "package": "@react-native-windows/codegen"
279
- }
280
- ]
281
- }
282
- },
283
- {
284
- "date": "Tue, 09 Feb 2021 05:07:37 GMT",
285
- "tag": "@react-native-windows/codegen_v0.0.0-canary.2",
286
- "version": "0.0.0-canary.2",
287
- "comments": {
288
- "prerelease": [
289
- {
290
- "comment": "Bump just-scripts from 1.3.2 to 1.3.3",
291
- "author": "dannyvv@microsoft.com",
292
- "commit": "ef4046c6a798446b6404dc26d0dd39224a0d7274",
293
- "package": "@react-native-windows/codegen"
294
- }
295
- ],
296
- "patch": [
297
- {
298
- "comment": "Bump @rnw-scripts/just-task to v2.0.2",
299
- "author": "dannyvv@microsoft.com",
300
- "commit": "ef4046c6a798446b6404dc26d0dd39224a0d7274",
301
- "package": "@react-native-windows/codegen"
302
- }
303
- ]
304
- }
305
- },
306
- {
307
- "date": "Fri, 05 Feb 2021 05:05:05 GMT",
308
- "tag": "@react-native-windows/codegen_v0.0.0-canary.1",
309
- "version": "0.0.0-canary.1",
310
- "comments": {
311
- "none": [
312
- {
313
- "comment": "Bump @rnw-scripts/just-task to v2.0.1",
314
- "author": "ngerlem@microsoft.com",
315
- "commit": "22ee9e8c47a0c794e7d509a471547ba873578e31",
316
- "package": "@react-native-windows/codegen"
317
- }
318
- ]
319
- }
320
- },
321
- {
322
- "date": "Wed, 03 Feb 2021 05:05:12 GMT",
323
- "tag": "@react-native-windows/codegen_v0.0.0-canary.1",
324
- "version": "0.0.0-canary.1",
325
- "comments": {
326
- "prerelease": [
327
- {
328
- "comment": "Move `react-native-windows-codegen` to `@react-native-windows/codegen`",
329
- "author": "ngerlem@microsoft.com",
330
- "commit": "b34311f6ee86fd8ade1b9132f08109f8a5dcdf6d",
331
- "package": "@react-native-windows/codegen"
332
- }
333
- ]
334
- }
335
- },
336
- {
337
- "date": "Thu, 28 Jan 2021 05:06:47 GMT",
338
- "tag": "react-native-windows-codegen_v1.1.14",
339
- "version": "1.1.14",
340
- "comments": {
341
- "patch": [
342
- {
343
- "comment": "Leverage default config support in Just library and factor out common tasks",
344
- "author": "dannyvv@microsoft.com",
345
- "commit": "54fb284afaf1b12ab51f1c29bb7ca67eddab8db1",
346
- "package": "react-native-windows-codegen"
347
- }
348
- ]
349
- }
350
- },
351
- {
352
- "date": "Wed, 27 Jan 2021 05:06:36 GMT",
353
- "tag": "react-native-windows-codegen_v1.1.13",
354
- "version": "1.1.13",
355
- "comments": {
356
- "patch": [
357
- {
358
- "comment": "Show TS Stack Traces on Uncaught CLI Exception",
359
- "author": "ngerlem@microsoft.com",
360
- "commit": "ed5cbe4de1abac005e94ddc3564af4bb60b804f0",
361
- "package": "react-native-windows-codegen"
362
- }
363
- ]
364
- }
365
- },
366
- {
367
- "date": "Tue, 26 Jan 2021 05:06:39 GMT",
368
- "tag": "react-native-windows-codegen_v1.1.12",
369
- "version": "1.1.12",
370
- "comments": {
371
- "patch": [
372
- {
373
- "comment": "Update @types package versions in package.json from dependabot updates to yarn.lock",
374
- "author": "dannyvv@microsoft.com",
375
- "commit": "b8f2beec9851dffe3188156c859cb123de926ba0",
376
- "package": "react-native-windows-codegen"
377
- }
378
- ],
379
- "none": [
380
- {
381
- "comment": "Update just-scripts to remove yargs-parser resolution",
382
- "author": "ngerlem@microsoft.com",
383
- "commit": "3d41c761d18cdc771a635bf9f5ef1259db9a27be",
384
- "package": "react-native-windows-codegen"
385
- }
386
- ]
387
- }
388
- },
389
- {
390
- "date": "Wed, 20 Jan 2021 01:45:54 GMT",
391
- "tag": "react-native-windows-codegen_v1.1.11",
392
- "version": "1.1.11",
393
- "comments": {
394
- "none": [
395
- {
396
- "comment": "Bump internally published packages to 1.0",
397
- "author": "ngerlem@microsoft.com",
398
- "commit": "982fb19448d7c9ed3f12fa27182fa69be83478c7",
399
- "package": "react-native-windows-codegen"
400
- }
401
- ]
402
- }
403
- },
404
- {
405
- "date": "Wed, 13 Jan 2021 05:05:37 GMT",
406
- "tag": "react-native-windows-codegen_v0.1.11",
407
- "version": "0.1.11",
408
- "comments": {
409
- "none": [
410
- {
411
- "comment": "remove excessive change files",
412
- "author": "lehon@microsoft.com",
413
- "commit": "8c4a518552899dbacc7d9133e2e480c8f55df85d",
414
- "package": "react-native-windows-codegen"
415
- }
416
- ]
417
- }
418
- },
419
- {
420
- "date": "Tue, 08 Dec 2020 03:20:37 GMT",
421
- "tag": "react-native-windows-codegen_v0.1.11",
422
- "version": "0.1.11",
423
- "comments": {
424
- "patch": [
425
- {
426
- "comment": "Bump yargs to 15.4.1",
427
- "author": "ngerlem@microsoft.com",
428
- "commit": "fa34591ac86ea25e1e92a807864ba71480046a27",
429
- "package": "react-native-windows-codegen"
430
- }
431
- ]
432
- }
433
- },
434
- {
435
- "date": "Tue, 24 Nov 2020 05:08:17 GMT",
436
- "tag": "react-native-windows-codegen_v0.1.10",
437
- "version": "0.1.10",
438
- "comments": {
439
- "patch": [
440
- {
441
- "comment": "Add more eslint rules",
442
- "author": "ngerlem@microsoft.com",
443
- "commit": "adc0617836a0fba4112646595645e65f93e0106f",
444
- "package": "react-native-windows-codegen"
445
- }
446
- ]
447
- }
448
- },
449
- {
450
- "date": "Fri, 20 Nov 2020 05:08:43 GMT",
451
- "tag": "react-native-windows-codegen_v0.1.9",
452
- "version": "0.1.9",
453
- "comments": {
454
- "none": [
455
- {
456
- "comment": "Integrate 11/18 RN Nightly Build 🎉",
457
- "author": "ngerlem@microsoft.com",
458
- "commit": "aba9483ea47b6d992877b325cc858a7e6309ead4",
459
- "package": "react-native-windows-codegen"
460
- }
461
- ]
462
- }
463
- },
464
- {
465
- "date": "Sat, 07 Nov 2020 05:04:58 GMT",
466
- "tag": "react-native-windows-codegen_v0.1.8",
467
- "version": "0.1.8",
468
- "comments": {
469
- "patch": [
470
- {
471
- "comment": "Create codegen directory if not present",
472
- "author": "ngerlem@microsoft.com",
473
- "commit": "f120ea9ab98de1a625573ec4d2a38c25ada83769",
474
- "package": "react-native-windows-codegen"
475
- }
476
- ]
477
- }
478
- },
479
- {
480
- "date": "Fri, 09 Oct 2020 05:06:32 GMT",
481
- "tag": "react-native-windows-codegen_v0.1.7",
482
- "version": "0.1.7",
483
- "comments": {
484
- "none": [
485
- {
486
- "comment": "Update just-scipts (remove npm-registry-fetch)",
487
- "author": "ngerlem@microsoft.com",
488
- "commit": "00b2d84b8effce0b7405a67bd4903eed88cb9aaf",
489
- "package": "react-native-windows-codegen"
490
- }
491
- ]
492
- }
493
- },
494
- {
495
- "date": "Thu, 01 Oct 2020 05:08:11 GMT",
496
- "tag": "react-native-windows-codegen_v0.1.7",
497
- "version": "0.1.7",
498
- "comments": {
499
- "patch": [
500
- {
501
- "comment": "ESLint Fixup",
502
- "author": "ngerlem@microsoft.com",
503
- "commit": "98c072069c9d9e0d495bfd6f3bdc386b1362f377",
504
- "package": "react-native-windows-codegen"
505
- }
506
- ]
507
- }
508
- },
509
- {
510
- "date": "Thu, 24 Sep 2020 05:06:21 GMT",
511
- "tag": "react-native-windows-codegen_v0.1.6",
512
- "version": "0.1.6",
513
- "comments": {
514
- "patch": [
515
- {
516
- "comment": "Zero-Config Tests for CLI, react-native-windows-init, react-native-windows-codegen",
517
- "author": "ngerlem@microsoft.com",
518
- "commit": "5a96480f422aa7c731d7febb900a3962e1265c08",
519
- "package": "react-native-windows-codegen"
520
- }
521
- ]
522
- }
523
- },
524
- {
525
- "date": "Mon, 21 Sep 2020 05:06:22 GMT",
526
- "tag": "react-native-windows-codegen_v0.1.5",
527
- "version": "0.1.5",
528
- "comments": {
529
- "patch": [
530
- {
531
- "comment": "Fixup eslint config",
532
- "author": "ngerlem@microsoft.com",
533
- "commit": "2df3273449486de9e663e26f708fd9bb2cd37c91",
534
- "package": "react-native-windows-codegen"
535
- }
536
- ]
537
- }
538
- },
539
- {
540
- "date": "Mon, 14 Sep 2020 22:03:37 GMT",
541
- "tag": "react-native-windows-codegen_v0.1.4",
542
- "version": "0.1.4",
543
- "comments": {
544
- "patch": [
545
- {
546
- "comment": "Reconcile package versions",
547
- "author": "ngerlem@microsoft.com",
548
- "commit": "8adedcfb2ce6492a4a7ede59e0f9188dc205d659",
549
- "package": "react-native-windows-codegen"
550
- }
551
- ]
552
- }
553
- },
554
- {
555
- "date": "Fri, 21 Aug 2020 05:04:58 GMT",
556
- "tag": "react-native-windows-codegen_v0.1.0",
557
- "version": "0.1.0",
558
- "comments": {
559
- "none": [
560
- {
561
- "comment": "Upgrade to eslint 6.8.0",
562
- "author": "ngerlem@microsoft.com",
563
- "commit": "68f7ba47793f4f1638be59ee9cb8ba68a70ae0cb",
564
- "package": "react-native-windows-codegen"
565
- }
566
- ]
567
- }
568
- },
569
- {
570
- "date": "Fri, 14 Aug 2020 05:05:34 GMT",
571
- "tag": "react-native-windows-codegen_v0.1.0",
572
- "version": "0.1.0",
573
- "comments": {
574
- "minor": [
575
- {
576
- "comment": "Integrate new version of codegen that has changes from react-native",
577
- "author": "acoates-ms@noreply.github.com",
578
- "commit": "68f81d2689aa55140f1ff9edd5ec95fd4f658a40",
579
- "package": "react-native-windows-codegen"
580
- }
581
- ]
582
- }
583
- },
584
- {
585
- "date": "Mon, 06 Jul 2020 23:11:46 GMT",
586
- "tag": "react-native-windows-codegen_v0.0.9",
587
- "version": "0.0.9",
588
- "comments": {
589
- "none": [
590
- {
591
- "comment": "Add watch script",
592
- "author": "ngerlem@microsoft.com",
593
- "commit": "805f69dd9e566185d27890bc852abe766f035dfd",
594
- "package": "react-native-windows-codegen"
595
- }
596
- ]
597
- }
598
- },
599
- {
600
- "date": "Wed, 01 Jul 2020 05:06:19 GMT",
601
- "tag": "react-native-windows-codegen_v0.0.8",
602
- "version": "0.0.8",
603
- "comments": {
604
- "patch": [
605
- {
606
- "comment": "Share eslint and Typescript configs across packages",
607
- "author": "ngerlem@microsoft.com",
608
- "commit": "623ac46c0ade7fb8564e3a0c9e8345768c18feb6",
609
- "package": "react-native-windows-codegen"
610
- }
611
- ]
612
- }
613
- },
614
- {
615
- "date": "Fri, 26 Jun 2020 23:59:27 GMT",
616
- "tag": "react-native-windows-codegen_v0.0.7",
617
- "version": "0.0.7",
618
- "comments": {
619
- "patch": [
620
- {
621
- "comment": "Upgrade React Native to 3/22 Nightly Build",
622
- "author": "ngerlem@microsoft.com",
623
- "commit": "0727ffcb907673749ddbf43e7a7c0922957c9e82",
624
- "package": "react-native-windows-codegen"
625
- }
626
- ]
627
- }
628
- },
629
- {
630
- "date": "Sun, 07 Jun 2020 00:05:23 GMT",
631
- "tag": "react-native-windows-codegen_v0.0.6",
632
- "version": "0.0.6",
633
- "comments": {
634
- "patch": [
635
- {
636
- "comment": "Update template gen to use mustache",
637
- "author": "dannyvv@microsoft.com",
638
- "commit": "1e39e42bc448117c4e981b41c7acdfd29f01417c",
639
- "package": "react-native-windows-codegen"
640
- }
641
- ]
642
- }
643
- },
644
- {
645
- "date": "Sat, 23 May 2020 00:04:45 GMT",
646
- "tag": "react-native-windows-codegen_v0.0.5",
647
- "version": "0.0.5",
648
- "comments": {
649
- "patch": [
650
- {
651
- "comment": "Include React namespace in more places",
652
- "author": "acoates@microsoft.com",
653
- "commit": "8dcf516f91d33a1a54818363f84e91b1b0da5e9b",
654
- "package": "react-native-windows-codegen"
655
- }
656
- ]
657
- }
658
- },
659
- {
660
- "date": "Thu, 30 Apr 2020 00:04:27 GMT",
661
- "tag": "react-native-windows-codegen_v0.0.4",
662
- "version": "0.0.4",
663
- "comments": {
664
- "patch": [
665
- {
666
- "comment": "Update tscodegen to version based on 0.62",
667
- "author": "acoates@microsoft.com",
668
- "commit": "36ca14d11d0ff8029664d5e77f6b434111c9a6db",
669
- "package": "react-native-windows-codegen"
670
- }
671
- ]
672
- }
673
- },
674
- {
675
- "date": "Fri, 24 Apr 2020 00:04:41 GMT",
676
- "tag": "react-native-windows-codegen_v0.0.3",
677
- "version": "0.0.3",
678
- "comments": {
679
- "patch": [
680
- {
681
- "comment": "Add files option",
682
- "author": "acoates@microsoft.com",
683
- "commit": "a5deb259266022af61129b636f84e3e81eaf46da",
684
- "package": "react-native-windows-codegen"
685
- }
686
- ]
687
- }
688
- },
689
- {
690
- "date": "Thu, 23 Apr 2020 00:04:37 GMT",
691
- "tag": "react-native-windows-codegen_v0.0.2",
692
- "version": "0.0.2",
693
- "comments": {
694
- "patch": [
695
- {
696
- "comment": "Initial react-native-windows-codegen",
697
- "author": "acoates@microsoft.com",
698
- "commit": "dcccb2c4d84ff530de5a80ac7e947c3287dff5ab",
699
- "package": "react-native-windows-codegen"
700
- }
701
- ]
702
- }
703
- }
704
- ]
705
- }