bugfix: Dont rename logo filenames (#282)
This commit is contained in:
parent
5a644b0856
commit
09e1de06ce
1
Makefile
1
Makefile
|
|
@ -71,6 +71,7 @@ webui-dist:
|
||||||
rm -rf webui webui.dev/dist
|
rm -rf webui webui.dev/dist
|
||||||
cd webui.dev && npm install
|
cd webui.dev && npm install
|
||||||
cd webui.dev && parcel build --public-url "." && mv dist ../webui
|
cd webui.dev && parcel build --public-url "." && mv dist ../webui
|
||||||
|
cp webui.dev/*.png webui/
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf dist OliveTin OliveTin.armhf OliveTin.exe reports gen
|
rm -rf dist OliveTin OliveTin.armhf OliveTin.exe reports gen
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -1,26 +1,30 @@
|
||||||
{
|
{
|
||||||
"name": "olivetin-webui",
|
"name": "olivetin-webui",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "The WebUI for OliveTin",
|
"description": "The WebUI for OliveTin",
|
||||||
"repository": "https://github.com/OliveTin/OliveTin",
|
"repository": "https://github.com/OliveTin/OliveTin",
|
||||||
"source": "index.html",
|
"source": "index.html",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"eslint": "^7.25.0",
|
"eslint": "^7.25.0",
|
||||||
"eslint-config-standard": "^16.0.2",
|
"eslint-config-standard": "^16.0.2",
|
||||||
"eslint-plugin-import": "^2.22.1",
|
"eslint-plugin-import": "^2.22.1",
|
||||||
"eslint-plugin-node": "^11.1.0",
|
"eslint-plugin-node": "^11.1.0",
|
||||||
"eslint-plugin-promise": "^4.3.1",
|
"eslint-plugin-promise": "^4.3.1",
|
||||||
"parcel": "^2.11.0",
|
"parcel": "^2.11.0",
|
||||||
"parcel-resolver-ignore": "^2.2.0",
|
"parcel-resolver-ignore": "^2.2.0",
|
||||||
"stylelint": "^15.6.0",
|
"stylelint": "^15.6.0",
|
||||||
"stylelint-config-standard": "^33.0.0"
|
"stylelint-config-standard": "^33.0.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"parcelIgnore": [
|
"parcelIgnore": [
|
||||||
"theme.css"
|
"theme.css",
|
||||||
|
"OliveTinLogo.png",
|
||||||
|
"OliveTinLogo-57px.png",
|
||||||
|
"OliveTinLogo-120px.png",
|
||||||
|
"OliveTinLogo-180px.png"
|
||||||
],
|
],
|
||||||
"license": "ISC"
|
"license": "ISC"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue