Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependency optimization #3715

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open

Conversation

outslept
Copy link

@outslept outslept commented Mar 20, 2025

Replace several dependencies with more lightweight alternatives and native Node.js functionality:

  • Replace p-map with custom Promise.all implementation using chunking
  • Replace graceful-fs with native node:fs module (Node.js >=18 provides sufficient capabilities)
  • Replace minimist with node:util.parseArgs() for CLI argument parsing
  • Replace husky + lint-staged with simple-git-hooks + nano-staged (fewer sub-dependencies)

These changes reduce the deps size, lower the overall dep count, and hopefully improve maintainability while preserving identical functionality. Part of the: e18e/ecosystem-issues#164

UPD: I'm open to any change/reverts you'd like for this

Replace several dependencies with more lightweight alternatives and native Node.js functionality:

- Replace p-map with custom Promise.all implementation using chunking
- Replace graceful-fs with native node:fs module (Node.js >=18 provides sufficient capabilities)
- Replace minimist with node:util.parseArgs() for CLI argument parsing
- Replace husky + lint-staged with simple-git-hooks + nano-staged (fewer sub-dependencies)

These changes reduce the deps size, lower the overall dep count, and hopefully improve maintainability while preserving identical functionality. Part of the: e18e/ecosystem-issues#164
@outslept outslept requested a review from zachleat as a code owner March 20, 2025 08:12
@outslept
Copy link
Author

Also here are the videos with coverage result for the fork:

fork.mp4

And for the current 11ty version

original.mp4

@zachleat
Copy link
Member

zachleat commented Apr 1, 2025

Happy to merge this but can you move the minimist->parseArgs change to a separate PR? I don’t think parseArgs supports multi-type CLI args yet (boolean or string values) — and this is the riskiest change of the 4 I think

@zachleat
Copy link
Member

zachleat commented Apr 1, 2025

(I fixed the conflicts I made here too)

@zachleat zachleat self-assigned this Apr 1, 2025
@outslept
Copy link
Author

outslept commented Apr 1, 2025

Happy to merge this but can you move the minimist->parseArgs change to a separate PR? I don’t think parseArgs supports multi-type CLI args yet (boolean or string values) — and this is the riskiest change of the 4 I think

Sure thing, gimme a minute

@outslept
Copy link
Author

outslept commented Apr 1, 2025

Oki, I've just copied the code from https://github.com/11ty/eleventy/blob/main/cmd.cjs This test is failing locally. Does this need investigation?

image

UPD: Upon some investigation

The test expects DirContains("..", "../..") to return false (indicating that a directory two levels up is not contained within the parent directory), but the current implementation returns true.

This happens because the function is using a simple startsWith() check on resolved paths:

path.resolve("..") resolves to the parent directory
path.resolve("../..") resolves to a directory two levels up

When checking if the second path starts with the first using startsWith(), it returns true because both paths start with the same directory structure

I'm not deeply familiar with the codebase, but I wanted to ask if this behavior is intentional? The function seems to need a more "safe" way to determine if a folder is actually a subfolder of another, rather than just checking if the path string starts with another path string.

Would using path.relative() be a better approach here to properly determine containment relationships between directories?

@Ryuno-Ki
Copy link
Contributor

Ryuno-Ki commented Apr 2, 2025

path.relative() sounds like a sensible choice to me.

Maybe we can back out this piece into a separate PR to get the majority in here, though.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants