@gadgetinc/ggt 0.2.0 → 0.2.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 +6 -6
- package/lib/__generated__/graphql.js.map +1 -1
- package/lib/commands/help.js +1 -1
- package/lib/commands/help.js.map +1 -1
- package/lib/commands/list.js +1 -1
- package/lib/commands/list.js.map +1 -1
- package/lib/commands/login.js.map +1 -1
- package/lib/commands/logout.js.map +1 -1
- package/lib/commands/sync.js +50 -39
- package/lib/commands/sync.js.map +1 -1
- package/lib/commands/whoami.js.map +1 -1
- package/lib/utils/base-command.js +2 -2
- package/lib/utils/base-command.js.map +1 -1
- package/lib/utils/client.js.map +1 -1
- package/lib/utils/context.js.map +1 -1
- package/lib/utils/errors.js.map +1 -1
- package/lib/utils/flags.js.map +1 -1
- package/lib/utils/fs-utils.js +4 -0
- package/lib/utils/fs-utils.js.map +1 -1
- package/lib/utils/help.js.map +1 -1
- package/lib/utils/promise.js.map +1 -1
- package/lib/utils/sleep.js +1 -1
- package/lib/utils/sleep.js.map +1 -1
- package/npm-shrinkwrap.json +554 -438
- package/oclif.manifest.json +1 -21
- package/package.json +19 -19
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.2.
|
|
2
|
+
"version": "0.2.1",
|
|
3
3
|
"commands": {
|
|
4
4
|
"help": {
|
|
5
5
|
"id": "help",
|
|
@@ -174,26 +174,6 @@
|
|
|
174
174
|
"helpGroup": "file",
|
|
175
175
|
"multiple": false,
|
|
176
176
|
"default": 100
|
|
177
|
-
},
|
|
178
|
-
"file-stability-threshold": {
|
|
179
|
-
"name": "file-stability-threshold",
|
|
180
|
-
"type": "option",
|
|
181
|
-
"summary": "Time in milliseconds a file's size must remain the same.",
|
|
182
|
-
"hidden": true,
|
|
183
|
-
"helpValue": "ms",
|
|
184
|
-
"helpGroup": "file",
|
|
185
|
-
"multiple": false,
|
|
186
|
-
"default": 500
|
|
187
|
-
},
|
|
188
|
-
"file-poll-interval": {
|
|
189
|
-
"name": "file-poll-interval",
|
|
190
|
-
"type": "option",
|
|
191
|
-
"description": "Interval in milliseconds between polling a file's size.",
|
|
192
|
-
"hidden": true,
|
|
193
|
-
"helpValue": "ms",
|
|
194
|
-
"helpGroup": "file",
|
|
195
|
-
"multiple": false,
|
|
196
|
-
"default": 100
|
|
197
177
|
}
|
|
198
178
|
},
|
|
199
179
|
"args": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gadgetinc/ggt",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
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",
|
|
@@ -37,27 +37,26 @@
|
|
|
37
37
|
"version": "changeset version && npm install --package-lock-only && npm run build && npm run readme"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@oclif/core": "^2.8.
|
|
40
|
+
"@oclif/core": "^2.8.7",
|
|
41
41
|
"@oclif/errors": "^1.3.6",
|
|
42
|
-
"@oclif/plugin-not-found": "^2.3.
|
|
42
|
+
"@oclif/plugin-not-found": "^2.3.25",
|
|
43
43
|
"@oclif/plugin-warn-if-update-available": "^2.0.37",
|
|
44
|
-
"@sentry/node": "^7.
|
|
44
|
+
"@sentry/node": "^7.55.2",
|
|
45
45
|
"@swc/helpers": "^0.5.1",
|
|
46
46
|
"chalk": "^5.2.0",
|
|
47
47
|
"chalk-template": "^1.1.0",
|
|
48
|
-
"chokidar": "^3.5.3",
|
|
49
48
|
"clean-stack": "^5.2.0",
|
|
50
49
|
"date-fns": "^2.30.0",
|
|
51
50
|
"debug": "^4.3.4",
|
|
52
51
|
"execa": "^7.1.1",
|
|
53
52
|
"fast-levenshtein": "^3.0.0",
|
|
54
53
|
"fs-extra": "^11.1.1",
|
|
55
|
-
"get-port": "^
|
|
54
|
+
"get-port": "^7.0.0",
|
|
56
55
|
"got": "^13.0.0",
|
|
57
56
|
"graphql": "^16.6.0",
|
|
58
57
|
"graphql-ws": "^5.13.1",
|
|
59
58
|
"ignore": "^5.2.4",
|
|
60
|
-
"inquirer": "^9.2.
|
|
59
|
+
"inquirer": "^9.2.7",
|
|
61
60
|
"lodash": "^4.17.21",
|
|
62
61
|
"node-notifier": "^10.0.1",
|
|
63
62
|
"normalize-path": "^3.0.0",
|
|
@@ -67,6 +66,7 @@
|
|
|
67
66
|
"pluralize": "^8.0.0",
|
|
68
67
|
"serialize-error": "^11.0.0",
|
|
69
68
|
"ts-dedent": "^2.2.0",
|
|
69
|
+
"watcher": "^2.2.2",
|
|
70
70
|
"which": "^3.0.1",
|
|
71
71
|
"ws": "^8.13.0"
|
|
72
72
|
},
|
|
@@ -77,40 +77,40 @@
|
|
|
77
77
|
"@graphql-codegen/typescript": "^4.0.0",
|
|
78
78
|
"@graphql-codegen/typescript-operations": "^4.0.0",
|
|
79
79
|
"@oclif/plugin-plugins": "^3.1.2",
|
|
80
|
-
"@oclif/test": "^2.3.
|
|
80
|
+
"@oclif/test": "^2.3.22",
|
|
81
81
|
"@swc/cli": "^0.1.62",
|
|
82
|
-
"@swc/core": "^1.3.
|
|
82
|
+
"@swc/core": "^1.3.64",
|
|
83
83
|
"@types/debug": "^4.1.8",
|
|
84
|
-
"@types/eslint": "^8.40.
|
|
84
|
+
"@types/eslint": "^8.40.2",
|
|
85
85
|
"@types/fast-levenshtein": "^0.0.2",
|
|
86
86
|
"@types/fs-extra": "^11.0.1",
|
|
87
87
|
"@types/inquirer": "^9.0.3",
|
|
88
88
|
"@types/lodash": "^4.14.195",
|
|
89
|
-
"@types/node": "^20.
|
|
89
|
+
"@types/node": "^20.3.1",
|
|
90
90
|
"@types/node-notifier": "^8.0.2",
|
|
91
91
|
"@types/normalize-path": "^3.0.0",
|
|
92
92
|
"@types/pluralize": "^0.0.29",
|
|
93
93
|
"@types/which": "^3.0.0",
|
|
94
|
-
"@types/ws": "^8.5.
|
|
95
|
-
"@typescript-eslint/eslint-plugin": "^5.59.
|
|
96
|
-
"@typescript-eslint/parser": "^5.59.
|
|
97
|
-
"concurrently": "^8.
|
|
94
|
+
"@types/ws": "^8.5.5",
|
|
95
|
+
"@typescript-eslint/eslint-plugin": "^5.59.11",
|
|
96
|
+
"@typescript-eslint/parser": "^5.59.11",
|
|
97
|
+
"concurrently": "^8.2.0",
|
|
98
98
|
"cross-env": "^7.0.3",
|
|
99
99
|
"cspell": "^6.31.1",
|
|
100
|
-
"eslint": "^8.
|
|
100
|
+
"eslint": "^8.42.0",
|
|
101
101
|
"eslint-config-prettier": "^8.8.0",
|
|
102
102
|
"eslint-plugin-import": "^2.27.5",
|
|
103
103
|
"eslint-plugin-lodash": "^7.4.0",
|
|
104
104
|
"nock": "^13.3.1",
|
|
105
|
-
"oclif": "^3.9.
|
|
105
|
+
"oclif": "^3.9.1",
|
|
106
106
|
"patch-package": "^7.0.0",
|
|
107
107
|
"prettier": "^2.8.8",
|
|
108
108
|
"prettier-plugin-packagejson": "^2.4.3",
|
|
109
109
|
"rimraf": "^5.0.1",
|
|
110
110
|
"ts-node": "^10.9.1",
|
|
111
|
-
"type-fest": "^3.
|
|
111
|
+
"type-fest": "^3.12.0",
|
|
112
112
|
"typescript": "^5.1.3",
|
|
113
|
-
"vitest": "^0.
|
|
113
|
+
"vitest": "^0.32.2"
|
|
114
114
|
},
|
|
115
115
|
"engines": {
|
|
116
116
|
"node": ">=16.0.0"
|