@loomhq/lens 11.16.2 → 11.16.3
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 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -72,24 +72,19 @@ Use [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/)messag
|
|
|
72
72
|
|
|
73
73
|
From the root of the [main Loom repo](http://github.com/loomhq/loom)
|
|
74
74
|
|
|
75
|
-
1.
|
|
75
|
+
1. [TEMPORARY WORKAROUND] Upgrade Lens by manually replacing all Lens versions within the loom monorepo with the current version under [Releases](https://github.com/loomhq/lens/releases).
|
|
76
76
|
|
|
77
|
-
|
|
78
|
-
cd projects/webapp-client
|
|
79
|
-
```
|
|
80
|
-
|
|
81
|
-
2. Upgrade the Lens package with pnpm (you can ignore the warnings).
|
|
77
|
+
For example, if you want to bump it to version 11.16.0, change the versions with a search and replace from its current version in the respective package.json files.
|
|
82
78
|
|
|
83
79
|
```
|
|
84
|
-
|
|
80
|
+
~~"@loomhq/lens": "^11.16.0",~~
|
|
81
|
+
"@loomhq/lens": "^11.16.1",
|
|
85
82
|
```
|
|
86
83
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
3. From the root, fix dependencies and upgrade Lens globally
|
|
84
|
+
2. From the root, fix dependencies and upgrade Lens globally
|
|
90
85
|
|
|
91
86
|
```
|
|
92
|
-
|
|
87
|
+
pnpm deps:fix && pnpm i
|
|
93
88
|
```
|
|
94
89
|
|
|
95
90
|
This shouldn't be necessary, but will correct any blocking issues.
|