From 6c1f151c4e8978051d56ea305c0efd83f21d5de1 Mon Sep 17 00:00:00 2001 From: metastasis Date: Sat, 31 Oct 2020 17:07:13 +0300 Subject: [PATCH] [vue sample] Changed script serve to start --- samples/vue/README.md | 4 ++-- samples/vue/package.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/vue/README.md b/samples/vue/README.md index 9d3ad0d..22adbe7 100644 --- a/samples/vue/README.md +++ b/samples/vue/README.md @@ -7,7 +7,7 @@ It is made with [Vue CLI](https://cli.vuejs.org/) ## Scripts -`npm run serve` - compiles and hot-reloads for development +`npm run start` - compiles and hot-reloads for development `npm run build` - compiles and minifies for production @@ -24,7 +24,7 @@ It is made with [Vue CLI](https://cli.vuejs.org/) npm install # start dev server -npm run serve +npm run start ``` Open the browser. Then click on "Download and parse invoice" button. diff --git a/samples/vue/package.json b/samples/vue/package.json index dbc7fbb..930e319 100644 --- a/samples/vue/package.json +++ b/samples/vue/package.json @@ -4,11 +4,11 @@ "description": "Vue example usage of xlsx-import", "author": "Dmitriy ", "scripts": { - "serve": "vue-cli-service serve", + "start": "vue-cli-service serve", "build": "vue-cli-service build", "lint": "vue-cli-service lint", "test": "npm run test:cy", - "test:cy": "start-server-and-test serve http://localhost:8080 cy:run", + "test:cy": "start-server-and-test start http://localhost:8080 cy:run", "cy:open": "cypress open", "cy:run": "npm-run-all cy:run:*", "cy:run:chrome": "cypress run --browser chrome --headless",