From 3ab76534c1eb9e67ba138c03eef6b5fe803328e3 Mon Sep 17 00:00:00 2001 From: Hugo Korte <63101006+Hugos68@users.noreply.github.com> Date: Thu, 9 Jan 2025 01:41:49 +0100 Subject: [PATCH] Bugfix: Fix package installations by removing `postinstall` lifecycle script. (#157) * Fix package installations by removing `postinstall` lifecycle script. * Fix `sync` * Fix `sync` --- .changeset/strong-parents-allow.md | 5 +++++ packages/floating-ui-svelte/package.json | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .changeset/strong-parents-allow.md diff --git a/.changeset/strong-parents-allow.md b/.changeset/strong-parents-allow.md new file mode 100644 index 00000000..cb88d7d7 --- /dev/null +++ b/.changeset/strong-parents-allow.md @@ -0,0 +1,5 @@ +--- +"@skeletonlabs/floating-ui-svelte": patch +--- + +Fix package installations by removing `postinstall` lifecycle script. diff --git a/packages/floating-ui-svelte/package.json b/packages/floating-ui-svelte/package.json index f830df4a..2761f980 100644 --- a/packages/floating-ui-svelte/package.json +++ b/packages/floating-ui-svelte/package.json @@ -6,8 +6,7 @@ "build:watch": "pnpm build --watch", "test": "vitest run", "test:watch": "pnpm test --watch", - "postinstall": "svelte-kit sync", - "sync": "pnpm build" + "sync": "svelte-kit sync && pnpm build" }, "files": ["dist"], "sideEffects": false,