From 3ce2df397b19ca1a5a53ba6119c3f0ace30798a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Otterstr=C3=B6m?= <35617441+MarcusOtter@users.noreply.github.com> Date: Mon, 3 May 2021 12:40:54 +0200 Subject: [PATCH 1/2] Remove lock file gitignores Sources: - "Do I commit the package-lock.json file created by npm 5?" (https://stackoverflow.com/questions/39990017/should-i-commit-the-yarn-lock-file-and-what-is-it-for) and - "Should I commit the yarn.lock file?" (https://stackoverflow.com/questions/39990017/should-i-commit-the-yarn-lock-file-and-what-is-it-for) - The svelte rollup template which does not have these files in the gitignore. https://github.com/sveltejs/template/blob/master/.gitignore --- .gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4ef60db..849d10a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,3 @@ .DS_Store node_modules public/bundle.* -package-lock.json -yarn.lock \ No newline at end of file From ca526437effad91471f34853975cf32714b12252 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Otterstr=C3=B6m?= <35617441+MarcusOtter@users.noreply.github.com> Date: Mon, 3 May 2021 12:42:42 +0200 Subject: [PATCH 2/2] Fix gitignore build path It was changed as of https://github.com/sveltejs/template-webpack/issues/34 and https://github.com/sveltejs/template-webpack/pull/36 but the gitignore was never updated. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 849d10a..35619f4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ .DS_Store node_modules -public/bundle.* +public/build/bundle.*