From 7bb444af2c3d3eff54c6816e2186bc6c734acd23 Mon Sep 17 00:00:00 2001 From: John Livingston Date: Mon, 6 Dec 2021 15:47:55 +0100 Subject: [PATCH] Update contributing documentation. --- CONTRIBUTING.fr.md | 6 ++++++ CONTRIBUTING.md | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/CONTRIBUTING.fr.md b/CONTRIBUTING.fr.md index 4e9808df..69ec300e 100644 --- a/CONTRIBUTING.fr.md +++ b/CONTRIBUTING.fr.md @@ -44,6 +44,12 @@ git checkout develop # Initialiser les sous-modules. Cette commande est à refaire si jamais la version d'un l'un des sous-module change. git submodule update --init --recursive +# Installer les dépendances NPM et compiler le plugin pour la première fois : +npm install + +# Compiler le plugin après une modification : +npm run build + # Si vous avez un fork du dépot, ajoutez le en remote (exemple) : git remote add me git@github.com:MON_COMPTE_GITHUB/peertube-plugin-livechat.git diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 56fb79f3..bd3dfc75 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -47,6 +47,12 @@ git checkout develop # Initialize the submodules. This command must be run again if any submodules' version changes. git submodule update --init --recursive +# Install NPM dependencies and build the module for the first time: +npm install + +# Build the plugin after a modification: +npm run build + # If you have a fork from the repository, add it as remote (example): git remote add me git@github.com:MY_GITHUB_ACCOUNT/peertube-plugin-livechat.git