From 94f7710cfc516c4a565db54d98e296a7cbf1d1fb Mon Sep 17 00:00:00 2001 From: Delmo Heredia Date: Thu, 18 Apr 2024 02:52:06 +0200 Subject: [PATCH] Fix build-docs-remove npm script (#962) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1cd7a98c..1395be54 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "cypress:open": "NODE_ENV=test start-server-and-test start http://localhost:8000/src/editor/index.html 'cypress open'", "open-docs-no-start": "open-cli http://localhost:8000/docs/jsdoc/", "open-docs": "run-p start open-docs-no-start", - "build-docs-remove": "rimraf \"docs/jsdoc/*\"", + "build-docs-remove": "rimraf \"docs/jsdoc/\"", "build-docs-create": "jsdoc --pedantic -c docs/jsdoc-config.js src", "build-docs": "run-s -c build-docs-remove build-docs-create", "build-and-open-docs-no-start": "run-s build-docs open-docs-no-start",