View Issue Details

This bug affects 1 person(s).
 6
IDProjectCategoryView StatusLast Update
19584Bug reportsOtherpublic2025-03-27 09:40
Reportermfavetti Assigned Top_teichmann  
PrioritynoneSeverityminor 
Status ready for code reviewResolutionopen 
Product Version6.5.x 
Summary19584: .gitignore file incorrectly includes node_modules/jquery/dist
Description

https://github.com/LimeSurvey/LimeSurvey/blob/a681a80e8036fe18d79731b5fbded44a77edaf66/.gitignore#L88

This line attempts to include node_modules/jquery/dist, but node_modules itself is excluded.

So, node_modules/jquery must be included as well

from the gitignore docs at https://git-scm.com/docs/gitignore

"It is not possible to re-include a file if a parent directory of that file is excluded."

Steps To Reproduce

unzip limesurvey6.5.11+240605.zip
cd limesurvey
git init .
curl https://raw.githubusercontent.com/LimeSurvey/LimeSurvey/master/.gitignore > .gitignore
git add .
git status node_modules/jquery*

examine added files, jquery/dist is missing

TagsNo tags attached.
Bug heat6
Complete LimeSurvey version number (& build)6.5.11
I will donate to the project if issue is resolvedNo
BrowserN/A
Database type & versionN/A
Server OS (if known)N/A
Webserver software & version (if known)N/A
PHP VersionN/A

Users monitoring this issue

There are no users monitoring this issue.

Activities

p_teichmann

p_teichmann

2024-06-06 10:56

administrator   ~80224

Hey, you are right, in general we want to get away from committing node_module folders into the repository.
Please let me know where the file was needed to be included and was causing an issue.
Maybe it can be removed as well from git inclusion.

DenisChenu

DenisChenu

2024-06-06 11:00

developer   ~80225

Maybe it can be removed as well from git inclusion.

Yes, it can be interesting

uibklime1

uibklime1

2025-03-27 09:30

reporter   ~82332

" we want to get away from committing node_module folders into the repository." Then how do you deploy files that are needed for the repository?

uibklime1

uibklime1

2025-03-27 09:39

reporter   ~82333

FYI: the reason this is a huge problem is for when one wants to build containers direclty from a specific source.

At any rate, the fix is simply removing the errant .gitignore line.

[code]
git show 1ae43ab62145a929be8d1983b055178c300ea02f
commit 1ae43ab62145a929be8d1983b055178c300ea02f
Author: Otheus otheus.shelling@uibk.ac.at
Date: Thu Mar 27 09:31:15 2025 +0100

Fix bug https://bugs.limesurvey.org/view.php?id=19584

diff --git a/limesurvey/.gitignore b/limesurvey/.gitignore
index 6b48b523..94dc29c1 100644
--- a/limesurvey/.gitignore
+++ b/limesurvey/.gitignore
@@ -77,7 +77,7 @@
/styles/

#ignore most of the js-build stuff
-node_modules/
+# node_modules/

node_modules//docs
node_modules/
/demo
node_modules/**/meteor
[/code]

uibklime1

uibklime1

2025-03-27 09:40

reporter   ~82334

OK, the above patch left out details due to magical formatting of this platform. But it should be clear that the fix is simple

Issue History

Date Modified Username Field Change
2024-06-05 23:57 mfavetti New Issue
2024-06-06 00:02 mfavetti Steps to Reproduce Updated
2024-06-06 00:06 mfavetti Steps to Reproduce Updated
2024-06-06 00:55 mfavetti Assigned To => mfavetti
2024-06-06 00:55 mfavetti Status new => assigned
2024-06-06 00:55 mfavetti Assigned To mfavetti => DenisChenu
2024-06-06 00:55 mfavetti Status assigned => ready for code review
2024-06-06 10:56 p_teichmann Note Added: 80224
2024-06-06 10:56 p_teichmann Bug heat 0 => 2
2024-06-06 11:00 DenisChenu Note Added: 80225
2024-06-06 11:00 DenisChenu Bug heat 2 => 4
2024-06-06 11:31 DenisChenu Assigned To DenisChenu => p_teichmann
2025-03-27 09:30 uibklime1 Note Added: 82332
2025-03-27 09:30 uibklime1 Bug heat 4 => 6
2025-03-27 09:39 uibklime1 Note Added: 82333
2025-03-27 09:40 uibklime1 Note Added: 82334