Skip to content

Commit

Permalink
0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rejetto committed Jan 5, 2022
1 parent f5aef8c commit e05c2b7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ You won't find all previous features here (yet), but still we got:
- search
- accounts
- resumable downloads
- download folders as zip archive
- simple website serving
- plug-ins
- log file

# Configuration

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hfs",
"version": "0.4.1",
"version": "0.5.0",
"description": "HTTP File Server",
"keywords": [
"file server",
Expand All @@ -13,9 +13,9 @@
"watch-server": "nodemon --ignore tests/ --watch src -e ts,tsx --exec ts-node src/index.ts",
"start-frontend": "cd frontend && npm run start",
"start": "node dist",
"build": "npm install && node timestamp && tsc --target es2018 && cp package*.json *.yaml dist && cd dist && npm ci --production && cd .. && npm run build-prune",
"build": "npm install && node timestamp && tsc --target es2018 && cp -r plugins READ* package*.json *.yaml dist && cd dist && npm ci --production && cd .. && npm run build-prune",
"build-prune": "cd dist && nm-prune --force && cd node_modules && rm -rf yaml/browser && mkdir lodash2 && cp lodash/lodash.min.js lodash2/lodash.js && cp lodash/package.json lodash2 && rm -rf lodash && mv lodash2 lodash",
"build-all": "npm run build && cd frontend && npm install && npm run build && cd ..",
"build-all": "rm -rf dist && npm run build && cd frontend && npm install && npm run build && echo COMPLETED",
"test": "mocha -r ts-node/register 'tests/**/*.ts'",
"make-exe-after-build": "pkg . -C brotli"
},
Expand Down

0 comments on commit e05c2b7

Please sign in to comment.