From 29eb24a921fb931892c587ff325baa8eea968a1b Mon Sep 17 00:00:00 2001 From: Craig Kochis Date: Thu, 27 Jul 2023 22:26:41 -0400 Subject: [PATCH] fix references to maplibre-gl package in docs --- MIGRATION.md | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/MIGRATION.md b/MIGRATION.md index 265b8157..ead6c47a 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -10,7 +10,7 @@ Follow the instructions below for installing the latest version, and any updates The Radar JS SDK now has a dependency on [maplibre-gl-js](https://github.com/maplibre/maplibre-gl-js) to power Radar Maps functionality. This is included as a `peerDependency` in the project, so if you're installing the Radar SDK as an ES Module, you'll need to install MapLibre as an additional package. ```bash -npm install --save radar-sdk-js maplibre-gl-js@2.4.0 +npm install --save radar-sdk-js maplibre-gl ``` ### Initialization diff --git a/README.md b/README.md index a74a9586..4e7f6f18 100644 --- a/README.md +++ b/README.md @@ -33,13 +33,13 @@ > **Note:** The Radar JS SDK has a peer depdendency on [maplibre-gl-js](https://github.com/maplibre/maplibre-gl-js). -Add the `radar-sdk-js` and `maplibre-gl-js` packages +Add the `radar-sdk-js` and `maplibre-gl` packages ```bash # with npm -npm install --save radar-sdk-js maplibre-gl-js +npm install --save radar-sdk-js maplibre-gl # with yarn -yarn add radar-sdk-js maplibre-gl-js +yarn add radar-sdk-js maplibre-gl ``` Then import as an ES Module in your project