From 8367427abfd8ee9a262313f2ccf9dfc3b640b199 Mon Sep 17 00:00:00 2001 From: Tixie Date: Thu, 21 Oct 2021 14:54:56 +0200 Subject: [PATCH] Update dev command --- README.md | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e59a492..d257e1d 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ npm ci ### Compiles and hot-reloads for development ``` -npm run serve +npm run dev ``` ### Compiles and minifies for production diff --git a/package.json b/package.json index 6f93215..57d8f66 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,8 @@ "private": true, "license": "Copyleft", "scripts": { - "serve": "npm run serve-milia", - "serve-milia": "parcel src/index.html", + "serve": "npm run dev", + "dev": "parcel src/index.html", "build": "parcel build src/index.html", "lint": "eslint --ext .js,vue .", "lint-fix": "eslint --ext .js,vue . --fix"