@graphcommerce/docs 4.11.0-canary.1 → 4.11.1-canary.0
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 +16 -0
- package/getting-started/create.md +5 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 4.11.1-canary.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1710](https://github.com/graphcommerce-org/graphcommerce/pull/1710) [`ba81dc2b9`](https://github.com/graphcommerce-org/graphcommerce/commit/ba81dc2b9233c281bd5d943a9762dd4b9658462d) Thanks [@paales](https://github.com/paales)! - Recommend node 16 and depth=1 for cloning
|
|
8
|
+
|
|
9
|
+
## 4.11.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#1613](https://github.com/graphcommerce-org/graphcommerce/pull/1613) [`c5af837f8`](https://github.com/graphcommerce-org/graphcommerce/commit/c5af837f86ac097089eded39dcdd0100f61a1990) Thanks [@paales](https://github.com/paales)! - Remove the usage of scripts_local
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [#1702](https://github.com/graphcommerce-org/graphcommerce/pull/1702) [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
|
|
18
|
+
|
|
3
19
|
## 4.11.0-canary.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -47,8 +47,9 @@ If you want to test a GraphCommerce storefront using a pre-configured Magento
|
|
|
47
47
|
demo store and a pre-configured GraphCMS project with demo content, then you
|
|
48
48
|
need to only install the dependencies. This is the quickest approach.
|
|
49
49
|
|
|
50
|
-
- Install and use node 14: `nvm install
|
|
51
|
-
- Install yarn: `npm install --global yarn`
|
|
50
|
+
- Install and use node 14/16: `nvm install 16` or `nvm use 16`
|
|
51
|
+
- Install yarn: `corepack enable` (for node 16) or `npm install --global yarn`
|
|
52
|
+
(for node 14)
|
|
52
53
|
|
|
53
54
|
## Step 1: Create a new GraphCommerce app
|
|
54
55
|
|
|
@@ -65,8 +66,8 @@ https://user-images.githubusercontent.com/1251986/158647122-dc57002f-a9c2-4661-a
|
|
|
65
66
|
|
|
66
67
|
### Download the example
|
|
67
68
|
|
|
68
|
-
1. `git clone https://github.com/graphcommerce-org/graphcommerce.git`
|
|
69
|
-
repository
|
|
69
|
+
1. `git clone --depth 1 https://github.com/graphcommerce-org/graphcommerce.git`
|
|
70
|
+
— clone repository
|
|
70
71
|
2. `mkdir my-project` — create project folder
|
|
71
72
|
3. `cp -R graphcommerce/examples/magento-graphcms/. my-project && rm -rf graphcommerce`
|
|
72
73
|
— copy example, delete repo
|
package/package.json
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"name": "@graphcommerce/docs",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/docs",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce/docs",
|
|
5
|
-
"version": "4.11.
|
|
5
|
+
"version": "4.11.1-canary.0",
|
|
6
6
|
"sideEffects": true,
|
|
7
7
|
"devDependencies": {
|
|
8
|
-
"@graphcommerce/prettier-config-pwa": "^4.0.7
|
|
8
|
+
"@graphcommerce/prettier-config-pwa": "^4.0.7"
|
|
9
9
|
},
|
|
10
10
|
"prettier": "@graphcommerce/prettier-config-pwa"
|
|
11
11
|
}
|