get rid of npm as dependency for the server
This small change would allow the server to get rid of the npm dependency as far as I understand it. This would be great since npm is a really big dependency and not really desired on Nextcloud installations, imo. Signed-off-by: szaimen <szaimen@e.mail.de>
This commit is contained in:
parent
1983783f9d
commit
afb6d4d52b
4 changed files with 0 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -2,5 +2,4 @@
|
||||||
3rdparty/pdfjs/
|
3rdparty/pdfjs/
|
||||||
build/
|
build/
|
||||||
server/config.js
|
server/config.js
|
||||||
server/package-lock.json
|
|
||||||
server/docker-compose.yml
|
server/docker-compose.yml
|
||||||
|
|
|
||||||
1
Makefile
1
Makefile
|
|
@ -37,7 +37,6 @@ appstore: clean build
|
||||||
--exclude=.gitignore \
|
--exclude=.gitignore \
|
||||||
--exclude=.gitmodules \
|
--exclude=.gitmodules \
|
||||||
--exclude=Makefile \
|
--exclude=Makefile \
|
||||||
--exclude=node_modules \
|
|
||||||
--exclude=pdfjs*.zip \
|
--exclude=pdfjs*.zip \
|
||||||
--exclude=package.json \
|
--exclude=package.json \
|
||||||
--exclude=run-*lint.sh \
|
--exclude=run-*lint.sh \
|
||||||
|
|
|
||||||
2
server/.gitignore
vendored
2
server/.gitignore
vendored
|
|
@ -1,5 +1,3 @@
|
||||||
*.pyc
|
*.pyc
|
||||||
|
|
||||||
node_modules/
|
|
||||||
pdfparser
|
pdfparser
|
||||||
PyPDF2
|
PyPDF2
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,6 @@ This document describes the `pdfdraw` server API.
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
- node
|
- node
|
||||||
- npm
|
|
||||||
- Python2
|
- Python2
|
||||||
- [pdftk](https://www.pdflabs.com/tools/pdftk-server/)
|
- [pdftk](https://www.pdflabs.com/tools/pdftk-server/)
|
||||||
- [svg2pdf](https://pypi.org/project/svglib/)
|
- [svg2pdf](https://pypi.org/project/svglib/)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue