Compare commits
30 Commits
brain-patc
...
03b210dc6f
Author | SHA1 | Date | |
---|---|---|---|
03b210dc6f | |||
ce9ca6ad79 | |||
aa8ebc27f0 | |||
c7b03cf294 | |||
173dca2119 | |||
660fa0415e | |||
9ba292f701
|
|||
f77de151b5 | |||
652a401797 | |||
7f8f072d70 | |||
5ec81733a2 | |||
415433b1fa
|
|||
b3dfb27b6f | |||
d0e3f0ca79 | |||
b950818eca | |||
95f60c63dd | |||
9a9b7d8ab9
|
|||
2b893b140f | |||
549a128d20 | |||
97d97fcdeb
|
|||
57a296e27d | |||
38e3ab7166 | |||
c858c3159e
|
|||
ce858edd67
|
|||
177628d03c
|
|||
8441a25651
|
|||
68e0b5efc1 | |||
38be80663b | |||
3ca22fe7ca
|
|||
8043155805 |
10
.drone.yml
10
.drone.yml
@ -12,12 +12,12 @@ trigger:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: lint
|
- name: lint
|
||||||
image: node:18
|
image: node:20.12.2@sha256:844b41cf784f66d7920fd673f7af54ca7b81e289985edc6cd864e7d05e0d133c
|
||||||
commands:
|
commands:
|
||||||
- npm install
|
- npm install
|
||||||
- npm run lint
|
- npm run lint
|
||||||
- name: build
|
- name: build
|
||||||
image: node:18
|
image: node:20.12.2@sha256:844b41cf784f66d7920fd673f7af54ca7b81e289985edc6cd864e7d05e0d133c
|
||||||
environment:
|
environment:
|
||||||
NODE_OPTIONS: '--openssl-legacy-provider'
|
NODE_OPTIONS: '--openssl-legacy-provider'
|
||||||
commands:
|
commands:
|
||||||
@ -39,14 +39,14 @@ depends_on:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build
|
- name: build
|
||||||
image: node:18
|
image: node:20.12.2@sha256:844b41cf784f66d7920fd673f7af54ca7b81e289985edc6cd864e7d05e0d133c
|
||||||
environment:
|
environment:
|
||||||
NODE_OPTIONS: '--openssl-legacy-provider'
|
NODE_OPTIONS: '--openssl-legacy-provider'
|
||||||
commands:
|
commands:
|
||||||
- npm install
|
- npm install
|
||||||
- npm run build
|
- npm run build
|
||||||
- name: deploy
|
- name: deploy
|
||||||
image: drillster/drone-rsync
|
image: drillster/drone-rsync@sha256:f4f90f96d0714d26c93c6c4c8f99bc4a7aa1cbf4d7bb772fcfac2ec7be44a331
|
||||||
settings:
|
settings:
|
||||||
hosts: [ "www.wtf-eg.net" ]
|
hosts: [ "www.wtf-eg.net" ]
|
||||||
user: onboarding
|
user: onboarding
|
||||||
@ -57,6 +57,6 @@ steps:
|
|||||||
recursive: true
|
recursive: true
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: 0f87c59a97ed13bfd04074b63d1e5567b2ff228141951e7edb14ba31a123284e
|
hmac: c3a0f95e44c6b1fd4e1de228a3c9a55f9edb5e189deb728b681bd7dc55b39565
|
||||||
|
|
||||||
...
|
...
|
||||||
|
@ -8,7 +8,7 @@ module.exports = {
|
|||||||
'@vue/standard'
|
'@vue/standard'
|
||||||
],
|
],
|
||||||
parserOptions: {
|
parserOptions: {
|
||||||
parser: 'babel-eslint'
|
parser: '@babel/eslint-parser'
|
||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||||||
|
28504
package-lock.json
generated
28504
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
34
package.json
34
package.json
@ -8,25 +8,25 @@
|
|||||||
"lint": "vue-cli-service lint"
|
"lint": "vue-cli-service lint"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bootstrap": "^5.2.3",
|
"bootstrap": "^5.3.3",
|
||||||
"core-js": "^3.26.1",
|
"core-js": "^3.36.1",
|
||||||
"qrcode.vue": "^3.3.3",
|
"qrcode.vue": "^3.4.1",
|
||||||
"register-service-worker": "^1.7.2",
|
"register-service-worker": "^1.7.2",
|
||||||
"vue": "^3.0.0"
|
"vue": "^3.4.23"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@vue/cli-plugin-babel": "~4.5.0",
|
"@vue/cli-plugin-babel": "5.0.8",
|
||||||
"@vue/cli-plugin-eslint": "~4.5.0",
|
"@vue/cli-plugin-eslint": "5.0.8",
|
||||||
"@vue/cli-plugin-pwa": "~4.5.0",
|
"@vue/cli-plugin-pwa": "5.0.8",
|
||||||
"@vue/cli-service": "~4.5.0",
|
"@vue/cli-service": "5.0.8",
|
||||||
"@vue/compiler-sfc": "^3.0.0",
|
"@vue/compiler-sfc": "3.4.23",
|
||||||
"@vue/eslint-config-standard": "^5.1.2",
|
"@vue/eslint-config-standard": "6.1.0",
|
||||||
"babel-eslint": "^10.1.0",
|
"@babel/eslint-parser": "7.24.1",
|
||||||
"eslint": "^6.8.0",
|
"eslint": "7.32.0",
|
||||||
"eslint-plugin-import": "^2.26.0",
|
"eslint-plugin-import": "2.29.1",
|
||||||
"eslint-plugin-node": "^11.1.0",
|
"eslint-plugin-n": "16.6.2",
|
||||||
"eslint-plugin-promise": "^4.3.1",
|
"eslint-plugin-promise": "4.3.1",
|
||||||
"eslint-plugin-standard": "^4.1.0",
|
"eslint-plugin-standard": "5.0.0",
|
||||||
"eslint-plugin-vue": "^7.20.0"
|
"eslint-plugin-vue": "7.20.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
10
renovate.json
Normal file
10
renovate.json
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": [
|
||||||
|
"config:best-practices",
|
||||||
|
"npm:unpublishSafe",
|
||||||
|
":prHourlyLimitNone",
|
||||||
|
":prConcurrentLimitNone",
|
||||||
|
":separateMultipleMajorReleases"
|
||||||
|
]
|
||||||
|
}
|
@ -798,7 +798,7 @@ export default {
|
|||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Lato";
|
font-family: "Lato";
|
||||||
src: local('Lato'), url("/fonts/Lato-Regular.woff") format("woff"), url("/fonts/Lato-Regular.woff2") format("woff2");
|
src: local('Lato'), url("../public/fonts/Lato-Regular.woff") format("woff"), url("../public/fonts/Lato-Regular.woff2") format("woff2");
|
||||||
}
|
}
|
||||||
body{
|
body{
|
||||||
font-family: 'Lato', 'sans-serif' !important;
|
font-family: 'Lato', 'sans-serif' !important;
|
||||||
|
@ -1,32 +1,5 @@
|
|||||||
/* eslint-disable no-console */
|
import { unregister } from 'register-service-worker'
|
||||||
|
|
||||||
import { register } from 'register-service-worker'
|
|
||||||
|
|
||||||
if (process.env.NODE_ENV === 'production') {
|
if (process.env.NODE_ENV === 'production') {
|
||||||
register(`${process.env.BASE_URL}service-worker.js`, {
|
unregister()
|
||||||
ready () {
|
|
||||||
console.log(
|
|
||||||
'App is being served from cache by a service worker.\n' +
|
|
||||||
'For more details, visit https://goo.gl/AFskqB'
|
|
||||||
)
|
|
||||||
},
|
|
||||||
registered () {
|
|
||||||
console.log('Service worker has been registered.')
|
|
||||||
},
|
|
||||||
cached () {
|
|
||||||
console.log('Content has been cached for offline use.')
|
|
||||||
},
|
|
||||||
updatefound () {
|
|
||||||
console.log('New content is downloading.')
|
|
||||||
},
|
|
||||||
updated () {
|
|
||||||
console.log('New content is available; please refresh.')
|
|
||||||
},
|
|
||||||
offline () {
|
|
||||||
console.log('No internet connection found. App is running in offline mode.')
|
|
||||||
},
|
|
||||||
error (error) {
|
|
||||||
console.error('Error during service worker registration:', error)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user