@skyreve/reve 1.0.7 → 1.0.10
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 +18 -9
- package/bin/darwin/reve +0 -0
- package/bin/linux/reve +0 -0
- package/bin/reve +0 -0
- package/bin/windows/reve.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,13 +5,13 @@ Reve is a comprehensive command line tool that connects the SkyReve platform wit
|
|
|
5
5
|
## 📋 Table of Contents
|
|
6
6
|
|
|
7
7
|
1. [Installation](#1-installation)
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
8
|
+
2. [Development Setup](#2-development-setup)
|
|
9
|
+
3. [Build](#3-build)
|
|
10
|
+
4. [Environment Configuration](#4-environment-configuration)
|
|
11
|
+
5. [Using Reve CLI](#5-using-reve-cli)
|
|
12
|
+
6. [Development Tools](#6-development-tools)
|
|
13
|
+
7. [Publishing to npm](#7-publishing-to-npm)
|
|
14
|
+
8. [Project Structure](#8-project-structure)
|
|
15
15
|
|
|
16
16
|
---
|
|
17
17
|
|
|
@@ -552,10 +552,19 @@ jobs:
|
|
|
552
552
|
npm whoami
|
|
553
553
|
|
|
554
554
|
# Check package permissions
|
|
555
|
-
npm access
|
|
555
|
+
npm access list packages
|
|
556
|
+
|
|
557
|
+
# Check published versions
|
|
558
|
+
npm view @skyreve/reve versions
|
|
559
|
+
|
|
560
|
+
# Check a published version
|
|
561
|
+
npm view @skyreve/reve@<version>
|
|
562
|
+
|
|
563
|
+
# Deprecate a version
|
|
564
|
+
npm deprecate @skyreve/reve@<version> "no longer support"
|
|
556
565
|
|
|
557
566
|
# Unpublish (only within 24 hours)
|
|
558
|
-
npm unpublish @skyreve/reve
|
|
567
|
+
npm unpublish @skyreve/reve@<version>
|
|
559
568
|
```
|
|
560
569
|
|
|
561
570
|
---
|
package/bin/darwin/reve
CHANGED
|
Binary file
|
package/bin/linux/reve
CHANGED
|
Binary file
|
package/bin/reve
CHANGED
|
Binary file
|
package/bin/windows/reve.exe
CHANGED
|
Binary file
|