From 74582c1c423c2977522f1188696b7aed1877bb8a Mon Sep 17 00:00:00 2001 From: Charlotte Vermandel Date: Wed, 24 Nov 2021 18:05:41 +0100 Subject: [PATCH 1/3] Change playground cmd in contributing --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6ed95b4..608f648 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -44,7 +44,7 @@ yarn install A playground of a VuePress environment is provided to test the plugin. ```bash -yarn serve +yarn playground ``` Then, open your browser on the indicated URL and test the search bar 🙂 From dea93aff5e5bcf15620b71cb0cb761a99d58d3be Mon Sep 17 00:00:00 2001 From: cvermand <33010418+bidoubiwa@users.noreply.github.com> Date: Thu, 25 Nov 2021 15:38:52 +0100 Subject: [PATCH 2/3] Change script command from serve to playground --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0e009fb..8ef7f0e 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Relevant and typo tolerant search bar for your Vuepress", "author": "Clémentine Urquizar ", "scripts": { - "serve": "yarn --cwd ./playground install && yarn --cwd ./playground dev", + "playground": "yarn --cwd ./playground install && yarn --cwd ./playground dev", "lint": "eslint '{.,tests}/**/*.{vue,js}'", "lint:fix": "yarn lint --fix", "test": "vue-cli-service test:unit" From 9e9512d6d22d4741a87d872b74b985711ae31c18 Mon Sep 17 00:00:00 2001 From: cvermand <33010418+bidoubiwa@users.noreply.github.com> Date: Thu, 25 Nov 2021 15:43:35 +0100 Subject: [PATCH 3/3] Add missing command change in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 295e4c1..424b7ca 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ You can do it by running the VuePress playground provided in this repository: ```bash yarn install -yarn serve +yarn playground ``` Then, open your browser on the indicated URL and test the search bar 🙂