From ea12720a50b84bf4b0b43622ce240e9cabaaa3f0 Mon Sep 17 00:00:00 2001 From: harish-sethuraman Date: Thu, 16 Jun 2022 19:28:40 +0530 Subject: [PATCH 1/4] chore: add installation commands --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1c2f60f..58d6c6b 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,16 @@ Extracts source maps from existing source files (from their sourceMappingU To begin, you'll need to install `source-map-loader`: -```bash -npm i -D source-map-loader +```console +npm install source-map-loader --save-dev +``` + +```console +yarn add -D source-map-loader +``` + +```console +pnpm add -D source-map-loader ``` Then add the plugin to your `webpack` config. For example: From 1c050d94ce16821e097f7438b98747750c472c5a Mon Sep 17 00:00:00 2001 From: harish-sethuraman Date: Thu, 16 Jun 2022 19:36:27 +0530 Subject: [PATCH 2/4] chore: use shorter command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 58d6c6b..a0d7294 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Extracts source maps from existing source files (from their sourceMappingU To begin, you'll need to install `source-map-loader`: ```console -npm install source-map-loader --save-dev +npm install -D source-map-loader ``` ```console From 7ec094070a5b547628a47b52be017c60740f4373 Mon Sep 17 00:00:00 2001 From: harish-sethuraman Date: Thu, 16 Jun 2022 19:37:01 +0530 Subject: [PATCH 3/4] chore: use i instead of install --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a0d7294..b45594f 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Extracts source maps from existing source files (from their sourceMappingU To begin, you'll need to install `source-map-loader`: ```console -npm install -D source-map-loader +npm i -D source-map-loader ``` ```console From 7742f90925c9f455909b6bfdfe4ed4960f46dfb1 Mon Sep 17 00:00:00 2001 From: Strek Date: Sat, 18 Jun 2022 09:06:40 +0530 Subject: [PATCH 4/4] chore: add --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index b45594f..b3046f2 100644 --- a/README.md +++ b/README.md @@ -23,10 +23,14 @@ To begin, you'll need to install `source-map-loader`: npm i -D source-map-loader ``` +or + ```console yarn add -D source-map-loader ``` +or + ```console pnpm add -D source-map-loader ```