@graphcommerce/cli 6.0.0-canary.27 → 6.0.0-canary.29
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/CHANGELOG.md +8 -0
- package/dist/bin/graphcommerce.js +1 -0
- package/package.json +5 -5
- package/src/bin/graphcommerce.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @graphcommerce/cli
|
|
2
2
|
|
|
3
|
+
## 6.0.0-canary.29
|
|
4
|
+
|
|
5
|
+
## 6.0.0-canary.28
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- [#1823](https://github.com/graphcommerce-org/graphcommerce/pull/1823) [`605d74434`](https://github.com/graphcommerce-org/graphcommerce/commit/605d74434b78baa83f3574b6a4249eae0431d570) - Fix/upgrade instructions ([@paales](https://github.com/paales))
|
|
10
|
+
|
|
3
11
|
## 6.0.0-canary.27
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -4,6 +4,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
4
4
|
const next_config_1 = require("@graphcommerce/next-config");
|
|
5
5
|
const commands = {
|
|
6
6
|
'codegen-config': next_config_1.generateConfig,
|
|
7
|
+
'export-config': next_config_1.exportConfig,
|
|
7
8
|
};
|
|
8
9
|
const args = process.argv.slice(2);
|
|
9
10
|
const command = args[0];
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/cli",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "6.0.0-canary.
|
|
5
|
+
"version": "6.0.0-canary.29",
|
|
6
6
|
"author": "",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"scripts": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"graphcommerce": "dist/bin/graphcommerce.js"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@graphcommerce/next-config": "6.0.0-canary.
|
|
27
|
+
"@graphcommerce/next-config": "6.0.0-canary.29",
|
|
28
28
|
"@graphql-codegen/cli": "3.2.1",
|
|
29
29
|
"@graphql-mesh/cli": "0.82.24",
|
|
30
30
|
"@graphql-mesh/types": "0.91.6",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"ts-node": "^10.9.1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@graphcommerce/eslint-config-pwa": "6.0.0-canary.
|
|
42
|
-
"@graphcommerce/prettier-config-pwa": "6.0.0-canary.
|
|
43
|
-
"@graphcommerce/typescript-config-pwa": "6.0.0-canary.
|
|
41
|
+
"@graphcommerce/eslint-config-pwa": "6.0.0-canary.29",
|
|
42
|
+
"@graphcommerce/prettier-config-pwa": "6.0.0-canary.29",
|
|
43
|
+
"@graphcommerce/typescript-config-pwa": "6.0.0-canary.29",
|
|
44
44
|
"@types/rimraf": "^3.0.2",
|
|
45
45
|
"react": "^18.2.0",
|
|
46
46
|
"typescript": "4.9.5"
|
package/src/bin/graphcommerce.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
import { generateConfig } from '@graphcommerce/next-config'
|
|
3
|
+
import { generateConfig, exportConfig } from '@graphcommerce/next-config'
|
|
4
4
|
|
|
5
5
|
const commands = {
|
|
6
6
|
'codegen-config': generateConfig,
|
|
7
|
+
'export-config': exportConfig,
|
|
7
8
|
}
|
|
8
9
|
|
|
9
10
|
const args = process.argv.slice(2)
|