@gadgetinc/ggt 0.1.14 → 0.1.16
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/sync.d.ts +1 -1
- package/lib/commands/sync.js +37 -21
- package/lib/commands/sync.js.map +1 -1
- package/lib/utils/fs-utils.d.ts +3 -1
- package/lib/utils/fs-utils.js +23 -1
- package/lib/utils/fs-utils.js.map +1 -1
- package/npm-shrinkwrap.json +585 -586
- package/oclif.manifest.json +1 -1
- package/package.json +17 -16
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.16",
|
|
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",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"lint": "concurrently --prefix none --group 'npm:lint:*'",
|
|
28
28
|
"lint:cspell": "cspell --no-progress --show-suggestions --show-context '**'",
|
|
29
29
|
"lint:eslint": "eslint --max-warnings 0 .",
|
|
30
|
+
"lint:fix": "prettier --write . && eslint --fix .",
|
|
30
31
|
"lint:prettier": "prettier --check .",
|
|
31
32
|
"lint:typescript": "tsc --project tsconfig.json --project spec/tsconfig.json --noEmit",
|
|
32
33
|
"publish": "npm run build && changeset publish",
|
|
@@ -35,11 +36,11 @@
|
|
|
35
36
|
"version": "changeset version && npm install --package-lock-only && npm run build && npm run readme"
|
|
36
37
|
},
|
|
37
38
|
"dependencies": {
|
|
38
|
-
"@oclif/core": "^2.8.
|
|
39
|
+
"@oclif/core": "^2.8.2",
|
|
39
40
|
"@oclif/errors": "^1.3.6",
|
|
40
41
|
"@oclif/plugin-not-found": "^2.3.23",
|
|
41
|
-
"@oclif/plugin-warn-if-update-available": "^2.0.
|
|
42
|
-
"@sentry/node": "^7.
|
|
42
|
+
"@oclif/plugin-warn-if-update-available": "^2.0.35",
|
|
43
|
+
"@sentry/node": "^7.48.0",
|
|
43
44
|
"chalk": "^4.1.2",
|
|
44
45
|
"chokidar": "^3.5.3",
|
|
45
46
|
"clean-stack": "^3.0.1",
|
|
@@ -64,35 +65,35 @@
|
|
|
64
65
|
"serialize-error": "^8.1.0",
|
|
65
66
|
"ts-dedent": "^2.2.0",
|
|
66
67
|
"which": "^3.0.0",
|
|
67
|
-
"ws": "^8.
|
|
68
|
+
"ws": "^8.13.0"
|
|
68
69
|
},
|
|
69
70
|
"devDependencies": {
|
|
70
|
-
"@changesets/cli": "^2.26.
|
|
71
|
+
"@changesets/cli": "^2.26.1",
|
|
71
72
|
"@graphql-codegen/add": "^4.0.1",
|
|
72
73
|
"@graphql-codegen/cli": "^3.3.0",
|
|
73
74
|
"@graphql-codegen/typescript": "^3.0.3",
|
|
74
75
|
"@graphql-codegen/typescript-operations": "^3.0.3",
|
|
75
|
-
"@oclif/plugin-plugins": "^2.4.
|
|
76
|
-
"@oclif/test": "^2.3.
|
|
77
|
-
"@swc/core": "^1.3.
|
|
76
|
+
"@oclif/plugin-plugins": "^2.4.6",
|
|
77
|
+
"@oclif/test": "^2.3.16",
|
|
78
|
+
"@swc/core": "^1.3.51",
|
|
78
79
|
"@swc/helpers": "^0.5.0",
|
|
79
|
-
"@swc/jest": "^0.2.
|
|
80
|
+
"@swc/jest": "^0.2.26",
|
|
80
81
|
"@types/debug": "^4.1.7",
|
|
81
82
|
"@types/fast-levenshtein": "^0.0.2",
|
|
82
83
|
"@types/fs-extra": "^11.0.1",
|
|
83
84
|
"@types/inquirer": "^8.2.5",
|
|
84
85
|
"@types/jest": "^29.5.0",
|
|
85
|
-
"@types/lodash": "^4.14.
|
|
86
|
+
"@types/lodash": "^4.14.194",
|
|
86
87
|
"@types/node": "^18.15.11",
|
|
87
88
|
"@types/node-notifier": "^8.0.2",
|
|
88
89
|
"@types/normalize-path": "^3.0.0",
|
|
89
90
|
"@types/pluralize": "^0.0.29",
|
|
90
|
-
"@types/which": "^
|
|
91
|
+
"@types/which": "^3.0.0",
|
|
91
92
|
"@types/ws": "^8.5.4",
|
|
92
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
93
|
-
"@typescript-eslint/parser": "^5.
|
|
93
|
+
"@typescript-eslint/eslint-plugin": "^5.59.0",
|
|
94
|
+
"@typescript-eslint/parser": "^5.59.0",
|
|
94
95
|
"concurrently": "^8.0.1",
|
|
95
|
-
"cspell": "^6.
|
|
96
|
+
"cspell": "^6.31.1",
|
|
96
97
|
"eslint": "^8.38.0",
|
|
97
98
|
"eslint-config-prettier": "^8.8.0",
|
|
98
99
|
"eslint-plugin-import": "^2.27.5",
|
|
@@ -101,7 +102,7 @@
|
|
|
101
102
|
"jest": "^29.5.0",
|
|
102
103
|
"jest-extended": "^3.2.4",
|
|
103
104
|
"nock": "^13.3.0",
|
|
104
|
-
"oclif": "^3.
|
|
105
|
+
"oclif": "^3.8.1",
|
|
105
106
|
"patch-package": "^6.5.1",
|
|
106
107
|
"prettier": "^2.8.7",
|
|
107
108
|
"prettier-plugin-packagejson": "^2.4.3",
|