diff --git a/.gitignore b/.gitignore index 07e6e47..ddd1657 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ /node_modules +/docs/.vuepress/.cache +/docs/.vuepress/.temp +/docs/.vuepress/dist diff --git a/package.json b/package.json index dc87a3d..5f08a2e 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,9 @@ "vuepress": "^2.0.0-rc.19" }, "scripts": { - "dev": "vuepress dev docs", - "build": "vuepress build docs" + "docs:build": "vuepress build docs", + "docs:clean-dev": "vuepress dev docs --clean-cache", + "docs:dev": "vuepress dev docs", + "docs:update-package": "yarn dlx vp-update" } }