From 8124b08b88490255bbcd5350330468a7c3697e47 Mon Sep 17 00:00:00 2001 From: moanos Date: Wed, 31 Jul 2024 14:49:29 +0200 Subject: [PATCH] feat: Exclude build JS files from git --- .gitignore | 2 ++ package.json | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e69de29..54ea6cd 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,2 @@ +node_modules/ +public/bundle.js* diff --git a/package.json b/package.json index 021e2f9..2cc0908 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,8 @@ "main": "index.js", "scripts": { "start": "webpack-dev-server --config webpack.config.js", - "ex-trans": "i18next -c i18next-parser.config.js" + "ex-trans": "i18next -c i18next-parser.config.js", + "build": "webpack --config webpack.config.js" }, "repository": { "type": "git",