From ba0dc9453c27e3131e98824bebba239de1ff4da6 Mon Sep 17 00:00:00 2001 From: Darshan Sen Date: Wed, 28 Sep 2022 11:43:06 +0530 Subject: [PATCH] fix: exclude `dist/postject-api.h` from `.npmignore` (#40) fix: exclude dist/postject-api.h from .npmignore I think having postject-api.h in the .npmignore file caused the copied file inside dist/ to get excluded from the package built with `npm pack`. Explicitly including it fixes the problem. Signed-off-by: Darshan Sen Signed-off-by: Darshan Sen --- .npmignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.npmignore b/.npmignore index 1033ca7..e911494 100644 --- a/.npmignore +++ b/.npmignore @@ -8,3 +8,4 @@ scripts/ src/ test/ vendor/ +!dist/postject-api.h