From 6f2b4cf856d61fea4289d4330ded9497f7e58063 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=20U=20R=20O=20=E2=84=A2?= Date: Thu, 28 Nov 2019 17:16:35 +0000 Subject: [PATCH 01/13] :construction: WIP Vuetify 2.x refactor --- .gitignore | 72 +++- assets/style/app.styl | 2 - components/DialogDisclaimer.vue | 10 +- components/Footer.vue | 21 +- components/Sections/Dashboard.vue | 6 +- components/Sections/Download.vue | 134 +++---- components/Sections/Extensions.vue | 6 +- components/Sections/Header.vue | 164 ++++---- components/Sections/OSS.vue | 6 +- layouts/default.vue | 19 +- pages/_error.vue => layouts/error.vue | 0 nuxt.config.js | 53 ++- package.json | 24 +- pages/faq.vue | 53 ++- pages/releases.vue | 206 +++++----- plugins/vuetify.js | 60 --- yarn.lock | 520 +++++--------------------- 17 files changed, 537 insertions(+), 819 deletions(-) delete mode 100644 assets/style/app.styl rename pages/_error.vue => layouts/error.vue (100%) delete mode 100644 plugins/vuetify.js diff --git a/.gitignore b/.gitignore index 992f0c4..20505dc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,57 @@ +# Created by .ignore support plugin (hsz.mobi) +### Node template # Logs -logs +/logs *.log npm-debug.log* yarn-debug.log* yarn-error.log* +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + # Dependency directories node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz # Yarn Integrity file .yarn-integrity @@ -14,15 +59,32 @@ node_modules/ # dotenv environment variables file .env +# parcel-bundler cache (https://parceljs.org/) +.cache + +# next.js build output +.next + # nuxt.js build output -.nuxt/ +.nuxt # Nuxt generate -dist/ +dist + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless + +# IDE / Editor +.idea -# Nuxt PWA +# Service worker sw.* -# MacOS DS Store file +# Mac OSX .DS_Store +# Vim swap files +*.swp diff --git a/assets/style/app.styl b/assets/style/app.styl deleted file mode 100644 index 1228f7c..0000000 --- a/assets/style/app.styl +++ /dev/null @@ -1,2 +0,0 @@ -// Import Vuetify styling -@require '~vuetify/src/stylus/main.styl' diff --git a/components/DialogDisclaimer.vue b/components/DialogDisclaimer.vue index b6e6ad0..6ec0629 100644 --- a/components/DialogDisclaimer.vue +++ b/components/DialogDisclaimer.vue @@ -1,6 +1,6 @@