From d48bc7d68650916e223ebe7c57c041accec99a2b Mon Sep 17 00:00:00 2001 From: dennev <221695162+dennev@users.noreply.github.com> Date: Sun, 17 Aug 2025 17:46:57 +0900 Subject: [PATCH] Update `build:clean` and `types:clean` script to include missing paths --- .changeset/rude-cups-wink.md | 5 +++++ packages/solid/package.json | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/rude-cups-wink.md diff --git a/.changeset/rude-cups-wink.md b/.changeset/rude-cups-wink.md new file mode 100644 index 000000000..1eb12e81b --- /dev/null +++ b/.changeset/rude-cups-wink.md @@ -0,0 +1,5 @@ +--- +"solid-js": patch +--- + +Update `build:clean` and `types:clean` script to include missing paths diff --git a/packages/solid/package.json b/packages/solid/package.json index ded4ee012..f4f33b405 100644 --- a/packages/solid/package.json +++ b/packages/solid/package.json @@ -206,10 +206,10 @@ }, "scripts": { "build": "npm-run-all -nl build:*", - "build:clean": "rimraf dist/ coverage/ store/dist/ web/dist/ h/dist/ h/jsx-runtime/dist html/dist/", + "build:clean": "rimraf dist/ coverage/ store/dist/ web/dist/ web/storage/dist h/dist/ h/jsx-runtime/dist html/dist/ universal/dist/", "build:js": "rollup -c", "types": "npm-run-all -nl types:*", - "types:clean": "rimraf types/ store/types/ web/types/ h/types/ h/jsx-runtime/types html/types/", + "types:clean": "rimraf types/ store/types/ web/types/ web/storage/types/ h/types/ h/jsx-runtime/types html/types/ universal/types/ src/jsx.d.ts h/jsx-runtime/src/jsx.d.ts", "types:copy": "ncp ../../node_modules/dom-expressions/src/jsx.d.ts ./src/jsx.d.ts && ncp ../../node_modules/dom-expressions/src/jsx-h.d.ts ./h/jsx-runtime/src/jsx.d.ts", "types:src": "tsc --project ./tsconfig.build.json && ncp ../../node_modules/dom-expressions/src/jsx.d.ts ./types/jsx.d.ts", "types:web": "tsc --project ./web/tsconfig.build.json",