oclif 4.5.3 → 4.5.4

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 CHANGED
@@ -7,20 +7,19 @@
7
7
  [![License](https://img.shields.io/npm/l/oclif.svg)](https://github.com/oclif/oclif/blob/main/package.json)
8
8
 
9
9
  <!-- toc -->
10
-
11
- - [oclif: Node.JS Open CLI Framework](#oclif-nodejs-open-cli-framework)
12
- - [🗒 Description](#-description)
13
- - [🚀 Getting Started Tutorial](#-getting-started-tutorial)
14
- - [ Features](#-features)
15
- - [📌 Requirements](#-requirements)
16
- - [📌 Migrating from V1](#-migrating-from-v1)
17
- - [🏗 Usage](#-usage)
18
- - [📚 Examples](#-examples)
19
- - [🔨 Commands](#-commands)
20
- - [Command Topics](#command-topics)
21
- - [🏭 Related Repositories](#-related-repositories)
22
- - [🦔 Learn More](#-learn-more)
23
- - [📣 Feedback](#-feedback)
10
+ * [oclif: Node.JS Open CLI Framework](#oclif-nodejs-open-cli-framework)
11
+ * [🗒 Description](#-description)
12
+ * [🚀 Getting Started Tutorial](#-getting-started-tutorial)
13
+ * [ Features](#-features)
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
+ * [🏭 Related Repositories](#-related-repositories)
21
+ * [🦔 Learn More](#-learn-more)
22
+ * [📣 Feedback](#-feedback)
24
23
  <!-- tocstop -->
25
24
 
26
25
  # 🗒 Description
@@ -112,16 +111,15 @@ hello world! (./src/commands/hello/world.ts)
112
111
  # 🔨 Commands
113
112
 
114
113
  <!-- commands -->
115
-
116
114
  # Command Topics
117
115
 
118
- - [`oclif generate`](docs/generate.md) - generate a new CLI
119
- - [`oclif help`](docs/help.md) - Display help for oclif.
120
- - [`oclif manifest`](docs/manifest.md) - generates plugin manifest json
121
- - [`oclif pack`](docs/pack.md) - package an oclif CLI into installable artifacts
122
- - [`oclif promote`](docs/promote.md) - promote CLI builds to a S3 release channel
123
- - [`oclif readme`](docs/readme.md) - adds commands to README.md in current directory
124
- - [`oclif upload`](docs/upload.md) - upload installable CLI artifacts to AWS S3
116
+ * [`oclif generate`](docs/generate.md) - generate a new CLI
117
+ * [`oclif help`](docs/help.md) - Display help for oclif.
118
+ * [`oclif manifest`](docs/manifest.md) - generates plugin manifest json
119
+ * [`oclif pack`](docs/pack.md) - package an oclif CLI into installable artifacts
120
+ * [`oclif promote`](docs/promote.md) - promote CLI builds to a S3 release channel
121
+ * [`oclif readme`](docs/readme.md) - adds commands to README.md in current directory
122
+ * [`oclif upload`](docs/upload.md) - upload installable CLI artifacts to AWS S3
125
123
 
126
124
  <!-- commandsstop -->
127
125
 
@@ -757,5 +757,5 @@
757
757
  ]
758
758
  }
759
759
  },
760
- "version": "4.5.3"
760
+ "version": "4.5.4"
761
761
  }
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.5.3",
4
+ "version": "4.5.4",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "oclif": "bin/run.js"
@@ -127,7 +127,7 @@
127
127
  "lint": "eslint . --ext .ts",
128
128
  "postpack": "shx rm oclif.manifest.json",
129
129
  "posttest": "yarn run lint",
130
- "prepack": "shx rm -rf lib && tsc && bin/run.js manifest .",
130
+ "prepack": "yarn build && bin/run.js manifest && bin/run.js readme --multi",
131
131
  "prepare": "husky",
132
132
  "test:integration:cli": "mocha test/integration/cli.test.ts --timeout 600000",
133
133
  "test:integration:deb": "mocha test/integration/deb.test.ts --timeout 900000",