From 8b23b3ff1879ca0442775a0ebf1defab72bbb79f Mon Sep 17 00:00:00 2001 From: Pascal Honegger Date: Sat, 6 Mar 2021 20:44:49 +0100 Subject: [PATCH] chore: add `private: true` in package.json (#225) This settings prevents users from accidentally publishing their svelte code to an NPM registry. Almost no user will want to publish their app to NPM, and if they wish to do so they can safely set private to false. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 48e3d60f..b0151f0c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { "name": "svelte-app", "version": "1.0.0", + "private": true, "scripts": { "build": "rollup -c", "dev": "rollup -c -w",