From b348f3c96a12ac030152ba6e491796678226e98d Mon Sep 17 00:00:00 2001 From: Neil Burrows Date: Sun, 4 Sep 2022 13:26:31 +0100 Subject: [PATCH] Add dependency installation to DevGuide (#765) --- DEVGUIDE.md | 7 +++++++ package.json | 1 + 2 files changed, 8 insertions(+) diff --git a/DEVGUIDE.md b/DEVGUIDE.md index 2a57fd85..6a41643d 100644 --- a/DEVGUIDE.md +++ b/DEVGUIDE.md @@ -19,6 +19,13 @@ Open up the new folder: cd jellyfin-roku ``` +Install Dependencies: + +```bash +npm install +``` + + ## Method 1: Visual Studio Code We recommend using Visual Studio Code when working on this project. The [BrightScript Language extension](https://marketplace.visualstudio.com/items?itemName=RokuCommunity.brightscript) provides a rich debugging experience, including in-editor syntax checking, debugging/breakpoint support, variable inspection at runtime, auto-formatting, an integrated remote control mode, and [much more](https://rokucommunity.github.io/vscode-brightscript-language/features.html). diff --git a/package.json b/package.json index 2fd17faa..b9a89ee4 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "ropm": "0.10.9" }, "scripts": { + "postinstall": "npx ropm copy", "validate": "npx bsc --copy-to-staging=false --create-package=false", "test": "echo \"Error: no test specified\" && exit 1", "lint": "bslint",