@flowdevcli/flowdev 1.1.0 → 1.1.1
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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -281,7 +281,7 @@ Cloud usage is strictly opt-in and fully configurable.
|
|
|
281
281
|
Use version:
|
|
282
282
|
|
|
283
283
|
```bash
|
|
284
|
-
>= 1.
|
|
284
|
+
>= 1.1.1
|
|
285
285
|
```
|
|
286
286
|
|
|
287
287
|
### Important Notice
|
|
@@ -312,14 +312,14 @@ npm publish
|
|
|
312
312
|
To deprecate a specific version:
|
|
313
313
|
|
|
314
314
|
```bash
|
|
315
|
-
npm deprecate flowdev@1.0.7 "Critical bug — upgrade to >= 1.
|
|
315
|
+
npm deprecate flowdev@1.0.7 "Critical bug — upgrade to >= 1.1.1"
|
|
316
316
|
```
|
|
317
317
|
|
|
318
318
|
To deprecate multiple versions:
|
|
319
319
|
|
|
320
320
|
```bash
|
|
321
321
|
for v in 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9; do
|
|
322
|
-
npm deprecate flowdev@$v "Critical bugs — upgrade to >= 1.
|
|
322
|
+
npm deprecate flowdev@$v "Critical bugs — upgrade to >= 1.1.1"
|
|
323
323
|
done
|
|
324
324
|
```
|
|
325
325
|
|