fix: stylelint and webui cleanup
This commit is contained in:
parent
3884dc6d0a
commit
b0f24811b2
|
|
@ -13,3 +13,4 @@ frontend/node_modules
|
||||||
custom-frontend
|
custom-frontend
|
||||||
integration-tests/screenshots/
|
integration-tests/screenshots/
|
||||||
.vscode/
|
.vscode/
|
||||||
|
webui/
|
||||||
|
|
|
||||||
1
Makefile
1
Makefile
|
|
@ -49,6 +49,7 @@ devcontainer: compile podman-image podman-container
|
||||||
|
|
||||||
webui-dist:
|
webui-dist:
|
||||||
$(MAKE) -wC frontend dist
|
$(MAKE) -wC frontend dist
|
||||||
|
mv frontend/dist webui
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(call delete-files,dist)
|
$(call delete-files,dist)
|
||||||
|
|
|
||||||
|
|
@ -12,4 +12,4 @@
|
||||||
},
|
},
|
||||||
"rules": {
|
"rules": {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -18,4 +18,4 @@ build:
|
||||||
|
|
||||||
dist: deps clean build
|
dist: deps clean build
|
||||||
|
|
||||||
.PHONY: codestyle
|
.PHONY: codestyle
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
class ArgumentForm extends window.HTMLElement {
|
class ArgumentForm extends window.HTMLElement {
|
||||||
getQueryParams () {
|
getQueryParams () {
|
||||||
return new URLSearchParams(window.location.search.substring(1))
|
return new URLSearchParams(window.location.search.substring(1))
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -5,6 +5,8 @@
|
||||||
"repository": "https://github.com/OliveTin/OliveTin",
|
"repository": "https://github.com/OliveTin/OliveTin",
|
||||||
"source": "index.html",
|
"source": "index.html",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"eslint": "^8.57.1",
|
||||||
|
"eslint-config-standard": "^17.1.0",
|
||||||
"process": "^0.11.10",
|
"process": "^0.11.10",
|
||||||
"stylelint": "^16.25.0",
|
"stylelint": "^16.25.0",
|
||||||
"stylelint-config-standard": "^39.0.1"
|
"stylelint-config-standard": "^39.0.1"
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
import { reactive } from 'vue'
|
import { reactive } from 'vue'
|
||||||
|
|
||||||
export const buttonResults = reactive({})
|
export const buttonResults = reactive({})
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue