From 0bbfd7ee7225d7dec618a0de1517aaeebbddc0a7 Mon Sep 17 00:00:00 2001 From: "Raoul v. R" Date: Fri, 29 Jun 2018 12:36:53 +0200 Subject: [PATCH] Changed cli command from inline to inline-import. Reduces the chance of collision with other packages. --- README.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cb1d805..144fa8c 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ npm install inline-import ### Command Line Interface (CLI) -The command line tool can be invoked using the `inline` command. It requires a configuration in which the +The command line tool can be invoked using the `inline-import` command. It requires a configuration in which the source paths and the [options](#options) are specified. You can decide whether you want to provide the configuration via `package.json` or as a standalone file. @@ -51,7 +51,7 @@ You can restore the original files by using the `--restore` option. #### Example ```sh -inline -c config/inline-import.json +inline-import -c config/inline-import.json ``` diff --git a/package.json b/package.json index 4425600..cd3da9a 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "main": "build/inline-import.js", "module": "src/index.js", "bin": { - "inline": "./bin/cli.js" + "inline-import": "./bin/cli.js" }, "sideEffects": false, "license": "Zlib",