From c05fc5d877ac5ba47bb26b58067107aac73e64f6 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Tue, 24 Nov 2020 17:29:40 +0100 Subject: [PATCH] Use yarn and updated dependencies * Default to use yarn instead of npm * Fixed eslintignore (do not lint hidden files) * Replaced deprecated eslint-loader with eslint-webpack-plugin * Use current eslint (v7) and upgraded vue plugin * Set node to 12, as 11 is not supported anymore (12 is the LTS version) * TODO: Drop package-lock.json as soon as we do not use npm anymore --- .eslintignore | 3 +- README.md | 8 +- package.json | 28 +- quasar.conf.js | 11 +- yarn.lock | 8934 ++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 8959 insertions(+), 25 deletions(-) create mode 100644 yarn.lock diff --git a/.eslintignore b/.eslintignore index 6c826df..5078cc4 100644 --- a/.eslintignore +++ b/.eslintignore @@ -4,4 +4,5 @@ /src-cordova /.quasar /node_modules -/src-ssr \ No newline at end of file +/src-ssr +.* \ No newline at end of file diff --git a/README.md b/README.md index c0409f1..e747fa0 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Dynamischen Managementsystem für Studentenclubs ## Install the dependencies ```bash -npm install +yarn install ``` ## Plugins @@ -29,17 +29,17 @@ The order of the plugins is importend! ### Start the app in development mode (hot-code reloading, error reporting, etc.) ```bash -quasar dev +yarn quasar dev ``` ### Lint the files ```bash -npm run lint +yarn run lint ``` ### Build the app for production ```bash -quasar build +yarn quasar build ```