-
-
Notifications
You must be signed in to change notification settings - Fork 513
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
base: main
Are you sure you want to change the base?
Dependency optimization #3715
Conversation
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
Also here are the videos with coverage result for the fork: fork.mp4And for the current 11ty version original.mp4 |
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 |
(I fixed the conflicts I made here too) |
Sure thing, gimme a minute |
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? UPD: Upon some investigation The test expects This happens because the function is using a simple
When checking if the second path starts with the first using 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 |
Maybe we can back out this piece into a separate PR to get the majority in here, though. |
Replace several dependencies with more lightweight alternatives and native Node.js functionality:
p-map
with customPromise.all
implementation using chunkinggraceful-fs
with nativenode:fs
module (Node.js >=18 provides sufficient capabilities)minimist
withnode:util.parseArgs()
for CLI argument parsinghusky
+lint-staged
withsimple-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