kubun 0.3.0 → 0.3.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.
- package/README.md +1 -1
- package/oclif.manifest.json +40 -40
- package/package.json +10 -10
package/README.md
CHANGED
package/oclif.manifest.json
CHANGED
|
@@ -285,6 +285,45 @@
|
|
|
285
285
|
"query.js"
|
|
286
286
|
]
|
|
287
287
|
},
|
|
288
|
+
"graphql:schema": {
|
|
289
|
+
"aliases": [],
|
|
290
|
+
"args": {},
|
|
291
|
+
"description": "Create a GraphQL schema from clusters of document models",
|
|
292
|
+
"flags": {
|
|
293
|
+
"cluster": {
|
|
294
|
+
"char": "c",
|
|
295
|
+
"description": "path of the JSON file of the cluster",
|
|
296
|
+
"name": "cluster",
|
|
297
|
+
"required": true,
|
|
298
|
+
"hasDynamicHelp": false,
|
|
299
|
+
"multiple": true,
|
|
300
|
+
"type": "option"
|
|
301
|
+
},
|
|
302
|
+
"output": {
|
|
303
|
+
"char": "o",
|
|
304
|
+
"description": "output file for the GraphQL schema",
|
|
305
|
+
"name": "output",
|
|
306
|
+
"hasDynamicHelp": false,
|
|
307
|
+
"multiple": false,
|
|
308
|
+
"type": "option"
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"hasDynamicHelp": false,
|
|
312
|
+
"hiddenAliases": [],
|
|
313
|
+
"id": "graphql:schema",
|
|
314
|
+
"pluginAlias": "kubun",
|
|
315
|
+
"pluginName": "kubun",
|
|
316
|
+
"pluginType": "core",
|
|
317
|
+
"strict": true,
|
|
318
|
+
"enableJsonFlag": false,
|
|
319
|
+
"isESM": true,
|
|
320
|
+
"relativePath": [
|
|
321
|
+
"dist",
|
|
322
|
+
"commands",
|
|
323
|
+
"graphql",
|
|
324
|
+
"schema.js"
|
|
325
|
+
]
|
|
326
|
+
},
|
|
288
327
|
"model:cluster": {
|
|
289
328
|
"aliases": [],
|
|
290
329
|
"args": {},
|
|
@@ -394,45 +433,6 @@
|
|
|
394
433
|
"create.js"
|
|
395
434
|
]
|
|
396
435
|
},
|
|
397
|
-
"graphql:schema": {
|
|
398
|
-
"aliases": [],
|
|
399
|
-
"args": {},
|
|
400
|
-
"description": "Create a GraphQL schema from clusters of document models",
|
|
401
|
-
"flags": {
|
|
402
|
-
"cluster": {
|
|
403
|
-
"char": "c",
|
|
404
|
-
"description": "path of the JSON file of the cluster",
|
|
405
|
-
"name": "cluster",
|
|
406
|
-
"required": true,
|
|
407
|
-
"hasDynamicHelp": false,
|
|
408
|
-
"multiple": true,
|
|
409
|
-
"type": "option"
|
|
410
|
-
},
|
|
411
|
-
"output": {
|
|
412
|
-
"char": "o",
|
|
413
|
-
"description": "output file for the GraphQL schema",
|
|
414
|
-
"name": "output",
|
|
415
|
-
"hasDynamicHelp": false,
|
|
416
|
-
"multiple": false,
|
|
417
|
-
"type": "option"
|
|
418
|
-
}
|
|
419
|
-
},
|
|
420
|
-
"hasDynamicHelp": false,
|
|
421
|
-
"hiddenAliases": [],
|
|
422
|
-
"id": "graphql:schema",
|
|
423
|
-
"pluginAlias": "kubun",
|
|
424
|
-
"pluginName": "kubun",
|
|
425
|
-
"pluginType": "core",
|
|
426
|
-
"strict": true,
|
|
427
|
-
"enableJsonFlag": false,
|
|
428
|
-
"isESM": true,
|
|
429
|
-
"relativePath": [
|
|
430
|
-
"dist",
|
|
431
|
-
"commands",
|
|
432
|
-
"graphql",
|
|
433
|
-
"schema.js"
|
|
434
|
-
]
|
|
435
|
-
},
|
|
436
436
|
"hello": {
|
|
437
437
|
"aliases": [],
|
|
438
438
|
"args": {
|
|
@@ -498,5 +498,5 @@
|
|
|
498
498
|
]
|
|
499
499
|
}
|
|
500
500
|
},
|
|
501
|
-
"version": "0.3.
|
|
501
|
+
"version": "0.3.1"
|
|
502
502
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kubun",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"license": "see LICENSE.md",
|
|
5
5
|
"description": "Kubun CLI",
|
|
6
6
|
"keywords": [],
|
|
@@ -46,21 +46,21 @@
|
|
|
46
46
|
"get-port": "^7.1.0",
|
|
47
47
|
"graphql": "^16.9.0",
|
|
48
48
|
"ora": "^8.1.1",
|
|
49
|
-
"@kubun/client": "^0.3.
|
|
50
|
-
"@kubun/db": "^0.3.
|
|
51
|
-
"@kubun/db-sqlite": "^0.3.
|
|
52
|
-
"@kubun/
|
|
53
|
-
"@kubun/
|
|
54
|
-
"@kubun/
|
|
55
|
-
"@kubun/server": "^0.3.
|
|
56
|
-
"@kubun/
|
|
49
|
+
"@kubun/client": "^0.3.1",
|
|
50
|
+
"@kubun/db-postgres": "^0.3.1",
|
|
51
|
+
"@kubun/db-sqlite": "^0.3.1",
|
|
52
|
+
"@kubun/db": "^0.3.1",
|
|
53
|
+
"@kubun/protocol": "^0.3.1",
|
|
54
|
+
"@kubun/graphql": "^0.3.1",
|
|
55
|
+
"@kubun/server": "^0.3.1",
|
|
56
|
+
"@kubun/http-client": "^0.3.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@oclif/test": "^4.1.12",
|
|
60
60
|
"oclif": "^4.17.42",
|
|
61
61
|
"shx": "^0.4.0",
|
|
62
62
|
"ts-node": "^10",
|
|
63
|
-
"typescript": "^5.8.
|
|
63
|
+
"typescript": "^5.8.3"
|
|
64
64
|
},
|
|
65
65
|
"scripts": {
|
|
66
66
|
"kubun": "./bin/dev.js",
|