@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.
Files changed (2) hide show
  1. package/README.md +6 -11
  2. 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. Move into the webapp-client directory.
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
- pnpm up -r @loomhq/lens --latest
80
+ ~~"@loomhq/lens": "^11.16.0",~~
81
+ "@loomhq/lens": "^11.16.1",
85
82
  ```
86
83
 
87
- This tells pnpm to find all packages in the workspace that use lens, and upgrade them all to the latest version
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
- cd ../.. && pnpm deps:fix && pnpm i
87
+ pnpm deps:fix && pnpm i
93
88
  ```
94
89
 
95
90
  This shouldn't be necessary, but will correct any blocking issues.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loomhq/lens",
3
- "version": "11.16.2",
3
+ "version": "11.16.3",
4
4
  "packageManager": "pnpm@8.9.2",
5
5
  "scripts": {
6
6
  "preinstall": "npx only-allow pnpm",