Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ node_modules
*.log
.idea/
package.json.lock
.codegraph
docs
package-lock.json
Comment on lines 6 to +9

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Remove the redundant and incorrectly named entry.

Line 6 contains package.json.lock, which is not the correct name for npm's lock file. The actual file is package-lock.json (added on line 9). Line 6 appears to be a typo and should be removed to avoid confusion.

🧹 Proposed fix to remove the redundant entry
 .idea/
-package.json.lock
 .codegraph
 docs
 package-lock.json
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
package.json.lock
.codegraph
docs
package-lock.json
.codegraph
docs
package-lock.json
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.gitignore around lines 6 - 9, Remove the erroneous .gitignore entry
"package.json.lock" (a typo) and keep the correct "package-lock.json" entry
instead; edit the .gitignore to delete the "package.json.lock" line so only the
valid npm lock filename "package-lock.json" remains listed.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openstack-uicore-foundation",
"version": "4.2.27",
"version": "4.2.28-beta.5",
"description": "ui reactjs components for openstack marketing site",
"main": "lib/openstack-uicore-foundation.js",
"scripts": {
Expand Down
Loading
Loading