From caa4bcf3391b3d45f2cee9b3714054afcb4d0aed Mon Sep 17 00:00:00 2001 From: Chanyoung Park Date: Mon, 1 Apr 2024 13:38:40 +0900 Subject: [PATCH] Fix: Exclude examples directory from version control To keep the repository clean and focused on the source code, this commit updates .gitignore and .npmignore to exclude the examples directory. The examples directory contains real-world usage examples of the library, which are not necessary for the package functionality but useful for developers. By excluding these files from version control, we minimize the package size and streamline the development process. --- .npmignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.npmignore b/.npmignore index b823691..66aaba5 100644 --- a/.npmignore +++ b/.npmignore @@ -1,4 +1,5 @@ .gitignore .git/ node_modules/ -npm-debug.log \ No newline at end of file +npm-debug.log +examples/ \ No newline at end of file