From 6d83c79964f2fc1bc1624d9dc5be53763c0df78b Mon Sep 17 00:00:00 2001 From: Konrad Pabjan Date: Thu, 14 May 2020 17:58:46 +0200 Subject: [PATCH] Remove --save in README (#455) --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3dab6d39..01f72cdb 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ The GitHub Actions ToolKit provides a set of packages to make creating actions e Provides functions for inputs, outputs, results, logging, secrets and variables. Read more [here](packages/core) ```bash -$ npm install @actions/core --save +$ npm install @actions/core ```
@@ -33,7 +33,7 @@ $ npm install @actions/core --save Provides functions to exec cli tools and process output. Read more [here](packages/exec) ```bash -$ npm install @actions/exec --save +$ npm install @actions/exec ```
@@ -42,7 +42,7 @@ $ npm install @actions/exec --save Provides functions to search for files matching glob patterns. Read more [here](packages/glob) ```bash -$ npm install @actions/glob --save +$ npm install @actions/glob ```
@@ -51,7 +51,7 @@ $ npm install @actions/glob --save Provides disk i/o functions like cp, mv, rmRF, find etc. Read more [here](packages/io) ```bash -$ npm install @actions/io --save +$ npm install @actions/io ```
@@ -60,7 +60,7 @@ $ npm install @actions/io --save Provides functions for downloading and caching tools. e.g. setup-* actions. Read more [here](packages/tool-cache) ```bash -$ npm install @actions/tool-cache --save +$ npm install @actions/tool-cache ```
@@ -69,7 +69,7 @@ $ npm install @actions/tool-cache --save Provides an Octokit client hydrated with the context that the current action is being run in. Read more [here](packages/github) ```bash -$ npm install @actions/github --save +$ npm install @actions/github ```
@@ -78,7 +78,7 @@ $ npm install @actions/github --save Provides functions to interact with actions artifacts. Read more [here](packages/artifact) ```bash -$ npm install @actions/artifact --save +$ npm install @actions/artifact ```