From 1a2f353782a8144e1f4137c3c7bebb6c37260dd0 Mon Sep 17 00:00:00 2001 From: Roberto Tonino <roberto.tonino5@gmail.com> Date: Sat, 17 Jul 2021 23:07:37 +0200 Subject: [PATCH] workflow: dev scripts --- package.json | 6 ++++-- style.css | 8 -------- 2 files changed, 4 insertions(+), 10 deletions(-) delete mode 100644 style.css diff --git a/package.json b/package.json index 03e44ad..12591b0 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,11 @@ { "version": "0.0.0", "scripts": { - "dev": "vite", + "vite": "vite", + "serve": "yarn --cwd ../server start", + "dev": "npm-run-all --parallel serve vite", "build": "vite build", - "serve": "vite preview" + "start": "vite preview" }, "dependencies": { "vue": "2.6.14", diff --git a/style.css b/style.css deleted file mode 100644 index 852de7a..0000000 --- a/style.css +++ /dev/null @@ -1,8 +0,0 @@ -#app { - font-family: Avenir, Helvetica, Arial, sans-serif; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-align: center; - color: #2c3e50; - margin-top: 60px; -}