From 17afc51a93e5b2c50a759729e4b6a55fd138e9c9 Mon Sep 17 00:00:00 2001 From: Chunpeng Huo Date: Fri, 18 Oct 2019 09:31:39 +1100 Subject: [PATCH] chore: format white space --- skeleton/plugin/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/skeleton/plugin/README.md b/skeleton/plugin/README.md index 1685baf9e..2ce5a6953 100644 --- a/skeleton/plugin/README.md +++ b/skeleton/plugin/README.md @@ -123,9 +123,9 @@ Yarn has a [bug](https://github.com/yarnpkg/yarn/issues/5235) that ignores `"pre By default, `"private"` field in package.json has been turned on, this prevents you from accidentally publish a private plugin to npm. -To publish the plugin to npm for public assumption: -1. Remove `"private": true,` from package.json. +To publish the plugin to npm for public consumption: +1. Remove `"private": true,` from package.json. 2. Pump up project version. This will run through `au test` (in "preversion" in package.json) first. ```shell npm version patch # or minor or major @@ -147,7 +147,6 @@ Here is one simple setup. 1. `npm i -D standard-changelog`. We use [`standard-changelog`](https://github.com/conventional-changelog/conventional-changelog) as a minimum example to support conventional changelog. * Alternatively you can use high level [standard-version](https://github.com/conventional-changelog/standard-version). 2. Add two commands to `"scripts"` section of package.json. - ``` "scripts": { // ...