From 81dfb2ba007f1c9070be6f391584c6fbe315e61a Mon Sep 17 00:00:00 2001 From: Joseph Hale Date: Sat, 26 Jul 2025 01:06:12 +0000 Subject: [PATCH] build: mark as a public package on npm Scoped packages are private by default, so, to publish, I need to explicitly mark it as `public` source: https://docs.npmjs.com/cli/v10/using-npm/scope#:~:text=Scoped%20packages%20are%20not%20public%20by%20default. --- package.json | 3 ++- 1 file(s) changed, 2 insertion(s)(+), 1 deletion(s)(-) diff --git a/package.json b/package.json --- a/package.json +++ b/package.json @@ -56,7 +56,8 @@ }, "homepage": "https://github.com/thehale/react-native-keep-awake#readme", "publishConfig": { - "registry": "https://registry.npmjs.org/" + "registry": "https://registry.npmjs.org/", + "access": "public" }, "devDependencies": { "@commitlint/config-conventional": "^19.6.0", -- tangled.sh