@graphcommerce/docs 4.9.1 → 4.9.2
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 +6 -0
- package/package.json +1 -1
- package/upgrading.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 4.9.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1684](https://github.com/graphcommerce-org/graphcommerce/pull/1684) [`f90933627`](https://github.com/graphcommerce-org/graphcommerce/commit/f909336273ff4b6e14b29acce4acfae178ccb6fa) Thanks [@paales](https://github.com/paales)! - Add instruction to ignore whitespace when creating diff patch
|
|
8
|
+
|
|
3
9
|
## 4.9.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/docs",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/docs",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce/docs",
|
|
5
|
-
"version": "4.9.
|
|
5
|
+
"version": "4.9.2",
|
|
6
6
|
"sideEffects": true,
|
|
7
7
|
"devDependencies": {
|
|
8
8
|
"@graphcommerce/prettier-config-pwa": "^4.0.6"
|
package/upgrading.md
CHANGED
|
@@ -46,7 +46,7 @@ dependencies, while keeping your customizations.
|
|
|
46
46
|
`@graphcommerce/next-ui`:
|
|
47
47
|
|
|
48
48
|
```bash
|
|
49
|
-
git diff --relative=examples/magento-graphcms "@graphcommerce/next-ui@OLD_VERSION" examples/magento-graphcms ':!examples/magento-graphcms/CHANGELOG.md' > changes.patch
|
|
49
|
+
git diff -w --relative=examples/magento-graphcms "@graphcommerce/next-ui@OLD_VERSION" examples/magento-graphcms ':!examples/magento-graphcms/CHANGELOG.md' > changes.patch
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
4. Move the `changes.patch` file from the /upgrade directory to the root of your
|