Add client build instructions to plugins

pull/3105/head
Chocobozzz 2020-08-21 13:50:33 +02:00 committed by Chocobozzz
parent 0cd6ffc09c
commit 365783532e
1 changed files with 25 additions and 0 deletions

View File

@ -498,6 +498,31 @@ Translation files are just objects, with the english sentence as the key and the
}
```
### Build your plugin
If you added client scripts, you'll need to build them using webpack.
Install webpack:
```
$ npm install
```
Add/update your files in the `clientFiles` array of `webpack.config.js`:
```
$ $EDITOR ./webpack.config.js
```
Build your client files:
```
$ npm run build
```
You built files are in the `dist/` directory. Check `package.json` to correctly point to them.
### Test your plugin/theme
You'll need to have a local PeerTube instance: