@graphcommerce/docs 4.12.0-canary.4 → 5.0.0-canary.14
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 +14 -0
- package/package.json +2 -2
- package/upgrading.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 5.0.0-canary.14
|
|
4
|
+
|
|
5
|
+
## 5.0.0-canary.6
|
|
6
|
+
|
|
7
|
+
### Major Changes
|
|
8
|
+
|
|
9
|
+
- [`e4c7fe17e`](https://github.com/graphcommerce-org/graphcommerce/commit/e4c7fe17e413e37362ceae92e67f1b3a5f62d398) - Bump major version of all packages ([@paales](https://github.com/paales))
|
|
10
|
+
|
|
11
|
+
## 4.12.0-canary.5
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [`16c29976d`](https://github.com/graphcommerce-org/graphcommerce/commit/16c29976d1968823c3632d0a06c6f5c99e72bcdd) - When upgrading it should git clone the full depth to be able to fetch older commits ([@paales](https://github.com/paales))
|
|
16
|
+
|
|
3
17
|
## 4.12.0-canary.4
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
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": "
|
|
5
|
+
"version": "5.0.0-canary.14",
|
|
6
6
|
"sideEffects": true,
|
|
7
7
|
"devDependencies": {
|
|
8
|
-
"@graphcommerce/prettier-config-pwa": "^
|
|
8
|
+
"@graphcommerce/prettier-config-pwa": "^5.0.0-canary.14"
|
|
9
9
|
},
|
|
10
10
|
"prettier": "@graphcommerce/prettier-config-pwa"
|
|
11
11
|
}
|
package/upgrading.md
CHANGED
|
@@ -38,7 +38,7 @@ dependencies, while keeping your customizations.
|
|
|
38
38
|
2. Download a fresh copy of the repository:
|
|
39
39
|
|
|
40
40
|
```bash
|
|
41
|
-
git clone -b main
|
|
41
|
+
git clone -b main https://github.com/graphcommerce-org/graphcommerce.git
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
3. Navigate to the /upgrade directory you've just created. Run the following
|