From 7a445b07f09846fe8bacee2dfb361eaa52e3acb9 Mon Sep 17 00:00:00 2001 From: cha0s Date: Thu, 15 Feb 2024 05:17:06 -0600 Subject: [PATCH] fix: make sure no patch-package still succeeds --- packages/create-app/template/package.json.noconflict | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/create-app/template/package.json.noconflict b/packages/create-app/template/package.json.noconflict index 8ea7cc6..825cd89 100644 --- a/packages/create-app/template/package.json.noconflict +++ b/packages/create-app/template/package.json.noconflict @@ -6,7 +6,7 @@ "build:only": "flecks build", "debug": "DEBUG=@flecks/* npm run -- dev", "dev": "npm run -- build:only -dh", - "postinstall": "patch-package", + "postinstall": "patch-package || true", "repl": "npx flecks repl --rlwrap", "start": "DEBUG=@flecks/*,-*:silly npm run -- dev" },