oclif 4.6.0 → 4.6.1-dev.0
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 +21 -19
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,18 +7,19 @@
|
|
|
7
7
|
[](https://github.com/oclif/oclif/blob/main/package.json)
|
|
8
8
|
|
|
9
9
|
<!-- toc -->
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
10
|
+
|
|
11
|
+
- [`oclif` CLI](#oclif-cli)
|
|
12
|
+
- [🗒 Description](#-description)
|
|
13
|
+
- [🚀 Getting Started Tutorial](#-getting-started-tutorial)
|
|
14
|
+
- [📌 Requirements](#-requirements)
|
|
15
|
+
- [📌 Migrating from V1](#-migrating-from-v1)
|
|
16
|
+
- [🏗 Usage](#-usage)
|
|
17
|
+
- [📚 Examples](#-examples)
|
|
18
|
+
- [🔨 Commands](#-commands)
|
|
19
|
+
- [Command Topics](#command-topics)
|
|
20
|
+
- [🚀 Contributing](#-contributing)
|
|
21
|
+
- [🏭 Related Repositories](#-related-repositories)
|
|
22
|
+
- [🦔 Learn More](#-learn-more)
|
|
22
23
|
<!-- tocstop -->
|
|
23
24
|
|
|
24
25
|
# 🗒 Description
|
|
@@ -94,15 +95,16 @@ hello world! (./src/commands/hello/world.ts)
|
|
|
94
95
|
# 🔨 Commands
|
|
95
96
|
|
|
96
97
|
<!-- commands -->
|
|
98
|
+
|
|
97
99
|
# Command Topics
|
|
98
100
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
101
|
+
- [`oclif generate`](docs/generate.md) - Generate a new CLI
|
|
102
|
+
- [`oclif help`](docs/help.md) - Display help for oclif.
|
|
103
|
+
- [`oclif manifest`](docs/manifest.md) - Generates plugin manifest json (oclif.manifest.json).
|
|
104
|
+
- [`oclif pack`](docs/pack.md) - package an oclif CLI into installable artifacts
|
|
105
|
+
- [`oclif promote`](docs/promote.md) - Promote CLI builds to a S3 release channel.
|
|
106
|
+
- [`oclif readme`](docs/readme.md) - Adds commands to README.md in current directory.
|
|
107
|
+
- [`oclif upload`](docs/upload.md) - upload installable CLI artifacts to AWS S3
|
|
106
108
|
|
|
107
109
|
<!-- commandsstop -->
|
|
108
110
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oclif",
|
|
3
3
|
"description": "oclif: create your own CLI",
|
|
4
|
-
"version": "4.6.0",
|
|
4
|
+
"version": "4.6.1-dev.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"oclif": "bin/run.js"
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"lint": "eslint . --ext .ts",
|
|
131
131
|
"postpack": "shx rm oclif.manifest.json",
|
|
132
132
|
"posttest": "yarn run lint",
|
|
133
|
-
"prepack": "yarn build && bin/run.js manifest
|
|
133
|
+
"prepack": "yarn build && bin/run.js manifest",
|
|
134
134
|
"prepare": "husky",
|
|
135
135
|
"test:integration:cli": "mocha test/integration/cli.*.test.ts --timeout 600000 --parallel",
|
|
136
136
|
"test:integration:deb": "mocha test/integration/deb.test.ts --timeout 900000",
|