From a73552452858bb2cb298fd0ff8d5ed9f00b5b0aa Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Thu, 21 Oct 2021 13:15:23 +0200 Subject: [PATCH] install vue and add .gitignore --- admin/.gitignore | 11 +++++++++++ admin/package.json | 5 ++++- admin/yarn.lock | 8 ++++++++ 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 admin/.gitignore create mode 100644 admin/yarn.lock diff --git a/admin/.gitignore b/admin/.gitignore new file mode 100644 index 000000000..a2d05ce19 --- /dev/null +++ b/admin/.gitignore @@ -0,0 +1,11 @@ +node_modules/ +dist/ +.cache/ + +.env + +# coverage folder +coverage/ + +# emacs +*~ \ No newline at end of file diff --git a/admin/package.json b/admin/package.json index 9d22fcef0..f753fcca6 100644 --- a/admin/package.json +++ b/admin/package.json @@ -5,5 +5,8 @@ "main": "index.js", "author": "Moriz Wahl", "license": "MIT", - "private": false + "private": false, + "dependencies": { + "vue": "^2.6.14" + } } diff --git a/admin/yarn.lock b/admin/yarn.lock new file mode 100644 index 000000000..4af2237cd --- /dev/null +++ b/admin/yarn.lock @@ -0,0 +1,8 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +vue@^2.6.14: + version "2.6.14" + resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.14.tgz#e51aa5250250d569a3fbad3a8a5a687d6036e235" + integrity sha512-x2284lgYvjOMj3Za7kqzRcUSxBboHqtgRE2zlos1qWaOye5yUmHn42LB1250NJBLRwEcdrB0JRwyPTEPhfQjiQ==