@gadgetinc/ggt 0.1.16 → 0.1.18
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 +6 -6
- package/lib/commands/help.d.ts +2 -2
- package/lib/commands/help.js +2 -1
- package/lib/commands/help.js.map +1 -1
- package/lib/commands/list.d.ts +1 -0
- package/lib/commands/list.js +15 -6
- package/lib/commands/list.js.map +1 -1
- package/lib/commands/sync.d.ts +88 -6
- package/lib/commands/sync.js +196 -122
- package/lib/commands/sync.js.map +1 -1
- package/lib/utils/base-command.d.ts +16 -10
- package/lib/utils/base-command.js +27 -14
- package/lib/utils/base-command.js.map +1 -1
- package/lib/utils/client.d.ts +6 -0
- package/lib/utils/client.js +6 -0
- package/lib/utils/client.js.map +1 -1
- package/lib/utils/context.d.ts +3 -2
- package/lib/utils/context.js +3 -2
- package/lib/utils/context.js.map +1 -1
- package/lib/utils/fs-utils.d.ts +2 -2
- package/lib/utils/fs-utils.js +3 -3
- package/lib/utils/fs-utils.js.map +1 -1
- package/lib/utils/promise.d.ts +35 -0
- package/lib/utils/promise.js +114 -0
- package/lib/utils/promise.js.map +1 -0
- package/npm-shrinkwrap.json +17320 -11197
- package/oclif.manifest.json +1 -1
- package/package.json +23 -23
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gadgetinc/ggt",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.18",
|
|
4
4
|
"description": "The command-line interface for Gadget",
|
|
5
5
|
"homepage": "https://github.com/gadget-inc/ggt",
|
|
6
6
|
"bugs": "https://github.com/gadget-inc/ggt/issues",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"build": "npm run clean && tsc --build && oclif manifest",
|
|
25
25
|
"clean": "rimraf lib tmp oclif.manifest.json",
|
|
26
26
|
"generate-graphql": "graphql-codegen --config graphql-codegen.yml",
|
|
27
|
-
"lint": "concurrently --prefix none --group 'npm:lint:*'",
|
|
27
|
+
"lint": "concurrently --prefix none --group 'npm:lint:*(!fix)'",
|
|
28
28
|
"lint:cspell": "cspell --no-progress --show-suggestions --show-context '**'",
|
|
29
29
|
"lint:eslint": "eslint --max-warnings 0 .",
|
|
30
30
|
"lint:fix": "prettier --write . && eslint --fix .",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"version": "changeset version && npm install --package-lock-only && npm run build && npm run readme"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@oclif/core": "^2.8.
|
|
39
|
+
"@oclif/core": "^2.8.5",
|
|
40
40
|
"@oclif/errors": "^1.3.6",
|
|
41
41
|
"@oclif/plugin-not-found": "^2.3.23",
|
|
42
|
-
"@oclif/plugin-warn-if-update-available": "^2.0.
|
|
43
|
-
"@sentry/node": "^7.
|
|
42
|
+
"@oclif/plugin-warn-if-update-available": "^2.0.36",
|
|
43
|
+
"@sentry/node": "^7.51.2",
|
|
44
44
|
"chalk": "^4.1.2",
|
|
45
45
|
"chokidar": "^3.5.3",
|
|
46
46
|
"clean-stack": "^3.0.1",
|
|
47
|
-
"date-fns": "^2.
|
|
47
|
+
"date-fns": "^2.30.0",
|
|
48
48
|
"debug": "^4.3.4",
|
|
49
49
|
"execa": "^5.1.1",
|
|
50
50
|
"fast-levenshtein": "^3.0.0",
|
|
@@ -64,52 +64,52 @@
|
|
|
64
64
|
"pluralize": "^8.0.0",
|
|
65
65
|
"serialize-error": "^8.1.0",
|
|
66
66
|
"ts-dedent": "^2.2.0",
|
|
67
|
-
"which": "^3.0.
|
|
67
|
+
"which": "^3.0.1",
|
|
68
68
|
"ws": "^8.13.0"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@changesets/cli": "^2.26.1",
|
|
72
72
|
"@graphql-codegen/add": "^4.0.1",
|
|
73
|
-
"@graphql-codegen/cli": "^3.3.
|
|
73
|
+
"@graphql-codegen/cli": "^3.3.1",
|
|
74
74
|
"@graphql-codegen/typescript": "^3.0.3",
|
|
75
|
-
"@graphql-codegen/typescript-operations": "^3.0.
|
|
76
|
-
"@oclif/plugin-plugins": "^
|
|
77
|
-
"@oclif/test": "^2.3.
|
|
78
|
-
"@swc/core": "^1.3.
|
|
79
|
-
"@swc/helpers": "^0.5.
|
|
75
|
+
"@graphql-codegen/typescript-operations": "^3.0.4",
|
|
76
|
+
"@oclif/plugin-plugins": "^3.0.1",
|
|
77
|
+
"@oclif/test": "^2.3.19",
|
|
78
|
+
"@swc/core": "^1.3.56",
|
|
79
|
+
"@swc/helpers": "^0.5.1",
|
|
80
80
|
"@swc/jest": "^0.2.26",
|
|
81
81
|
"@types/debug": "^4.1.7",
|
|
82
82
|
"@types/fast-levenshtein": "^0.0.2",
|
|
83
83
|
"@types/fs-extra": "^11.0.1",
|
|
84
84
|
"@types/inquirer": "^8.2.5",
|
|
85
|
-
"@types/jest": "^29.5.
|
|
85
|
+
"@types/jest": "^29.5.1",
|
|
86
86
|
"@types/lodash": "^4.14.194",
|
|
87
|
-
"@types/node": "^
|
|
87
|
+
"@types/node": "^20.1.0",
|
|
88
88
|
"@types/node-notifier": "^8.0.2",
|
|
89
89
|
"@types/normalize-path": "^3.0.0",
|
|
90
90
|
"@types/pluralize": "^0.0.29",
|
|
91
91
|
"@types/which": "^3.0.0",
|
|
92
92
|
"@types/ws": "^8.5.4",
|
|
93
|
-
"@typescript-eslint/eslint-plugin": "^5.59.
|
|
94
|
-
"@typescript-eslint/parser": "^5.59.
|
|
93
|
+
"@typescript-eslint/eslint-plugin": "^5.59.5",
|
|
94
|
+
"@typescript-eslint/parser": "^5.59.5",
|
|
95
95
|
"concurrently": "^8.0.1",
|
|
96
96
|
"cspell": "^6.31.1",
|
|
97
|
-
"eslint": "^8.
|
|
97
|
+
"eslint": "^8.40.0",
|
|
98
98
|
"eslint-config-prettier": "^8.8.0",
|
|
99
99
|
"eslint-plugin-import": "^2.27.5",
|
|
100
100
|
"eslint-plugin-jest": "^27.2.1",
|
|
101
101
|
"eslint-plugin-lodash": "^7.4.0",
|
|
102
102
|
"jest": "^29.5.0",
|
|
103
103
|
"jest-extended": "^3.2.4",
|
|
104
|
-
"nock": "^13.3.
|
|
105
|
-
"oclif": "^3.
|
|
106
|
-
"patch-package": "^
|
|
107
|
-
"prettier": "^2.8.
|
|
104
|
+
"nock": "^13.3.1",
|
|
105
|
+
"oclif": "^3.9.0",
|
|
106
|
+
"patch-package": "^7.0.0",
|
|
107
|
+
"prettier": "^2.8.8",
|
|
108
108
|
"prettier-plugin-packagejson": "^2.4.3",
|
|
109
109
|
"rimraf": "^5.0.0",
|
|
110
110
|
"ts-node": "^10.9.1",
|
|
111
111
|
"tslib": "^2.5.0",
|
|
112
|
-
"type-fest": "^3.
|
|
112
|
+
"type-fest": "^3.10.0",
|
|
113
113
|
"typescript": "^5.0.4"
|
|
114
114
|
},
|
|
115
115
|
"engines": {
|