1
0
mirror of https://github.com/S2-/gitlit synced 2025-08-02 12:20:05 +02:00

package script

This commit is contained in:
s2
2018-05-19 21:39:53 +02:00
parent 372074a470
commit 39eae0ea28
4 changed files with 1979 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
node_modules
app/node_modules
dist

4
makedist.sh Normal file
View File

@@ -0,0 +1,4 @@
#/bin/bash
rm -rf dist
mkdir dist
node_modules/.bin/electron-packager ./app/ gitlit --all --out dist/

1956
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "gitlit",
"version": "1.0.0",
"description": "",
"main": "app/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "ssh://git@git.e.tern.al:22022/s2/gitlit.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"electron-packager": "^12.1.0"
}
}