From 7c3d3079ef448c1a08631f5527b52d2ef29b3e67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 11 Mar 2020 16:32:18 +0100 Subject: [PATCH] simplify script targets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- package.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/package.json b/package.json index b8ec942..448bcf0 100644 --- a/package.json +++ b/package.json @@ -13,8 +13,6 @@ "scripts": { "dev": "vuepress dev docs", "build": "vuepress build docs", - "cleanlib": "rm -rf lib/* && touch lib/.gitkeep", - "cleandist": "rm -rf ./vuepress/dist", - "clean": "yarn run clearlib && yarn run cleardist" + "clean": "git clean -fxd docs" } }