Add new publish script.

This commit is contained in:
Roger Far 2021-02-14 12:02:21 -07:00
parent bbf2217718
commit e291989ace
6 changed files with 1932 additions and 3 deletions

2
.gitignore vendored
View file

@ -39,3 +39,5 @@ server/RdtClient.Web/wwwroot/
build/
publish/
server/Downloader/
node_modules/

View file

@ -73,7 +73,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- First release
- Add unraring progress and default auto download / auto remove options.
[Unreleased]: https://github.com/rogerfar/rdt-client/compare/v1.5.5...HEAD
[Unreleased]: https://github.com/rogerfar/rdt-client/compare/1.5.5...HEAD
[1.5.5]: https://github.com/rogerfar/rdt-client/releases/tag/1.5.5
[1.5.4]: https://github.com/rogerfar/rdt-client/releases/tag/1.5.4
[1.5.3]: https://github.com/rogerfar/rdt-client/releases/tag/1.5.3

View file

@ -20,7 +20,6 @@ You can run the docker container on Windows, Linux. To get started either use _D
```console
docker run --pull=always
--cap-add=NET_ADMIN -d \
--volume /your/download/path/:/data/downloads \
--volume /your/storage/path/:/data/db \
--log-driver json-file \

View file

@ -17,4 +17,8 @@ $location = Get-Location
cd ..
Remove-Item -Path out -Recurse -Force
Remove-Item -Path out -Recurse -Force
gh-release --assets RealDebridClient.zip
Remove-Item RealDebridClient.zip

1904
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

20
package.json Normal file
View file

@ -0,0 +1,20 @@
{
"name": "rdt-client",
"version": "1.5.6",
"description": "This is a web interface to manage your torrents on Real-Debrid. It supports the following features:",
"main": "index.js",
"dependencies": {
"gh-release": "^5.0.0"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/rogerfar/rdt-client.git"
},
"author": "Roger Far",
"license": "MIT",
"bugs": {
"url": "https://github.com/rogerfar/rdt-client/issues"
},
"homepage": "https://github.com/rogerfar/rdt-client#readme"
}