-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #261 from sbs20/staging
Monorepo; Settings; OCR lang fix; Device Names
- Loading branch information
Showing
93 changed files
with
942 additions
and
2,376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
server/node_modules | ||
webui/node_modules | ||
packages/server/node_modules | ||
packages/client/node_modules | ||
release | ||
var |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "scanservjs", | ||
"version": "2.13.0", | ||
"description": "scanservjs is a simple web-based UI for SANE which allows you to share a scanner on a network without the need for drivers or complicated installation.", | ||
"scripts": { | ||
"clean": "rm -rf ./dist", | ||
"version": "npm i && cd packages/client && npm --allow-same-version --no-git-tag-version version $npm_package_version && cd ../server && npm --allow-same-version --no-git-tag-version version $npm_package_version", | ||
"install": "cd packages/client && npm i --loglevel=error && cd ../server && npm i --loglevel=error", | ||
"lint": "cd packages/server && npm run lint", | ||
"test": "cd packages/server && npm run test", | ||
"build": "npm run clean && cd packages/client && npm run build && cd ../server && npm run build", | ||
"package": "cd packages/server && npm run package", | ||
"docker-install": "npm run install", | ||
"docker-build": "npm run build", | ||
"verify": "npm run version && npm run lint && npm run test", | ||
"release": "npm run verify && npm run build && npm run package", | ||
"serve": "cd packages/client && npm run serve" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/sbs20/scanservjs" | ||
}, | ||
"author": "Sam Strachan", | ||
"license": "GPL-2.0" | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"exclude": [ | ||
"node_modules" | ||
], | ||
"include": [ | ||
"**/*" | ||
] | ||
} |
Oops, something went wrong.