-
Notifications
You must be signed in to change notification settings - Fork 319
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
feat: make filepath relative for cache portability #852
Conversation
workflow: benchmarks/sizeComparison of minified (terser) and compressed (brotli) size results, measured in bytes. Smaller is better.
|
493c789
to
65ae1f3
Compare
567c014
to
8710eb4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also a breaking test.
65ae1f3
to
2dcdec3
Compare
2dcdec3
to
9263ca9
Compare
d05acba
to
d80800f
Compare
d80800f
to
ec9424e
Compare
ec9424e
to
0896aeb
Compare
fbd16ea
to
7036a6a
Compare
7036a6a
to
b64b9eb
Compare
b64b9eb
to
6a77536
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't quite look right. We can chat further if I'm wrong.
… into feat-relative-cache-path
while (currentDir !== path.parse(currentDir).root) { | ||
const packageJsonPath = path.join(currentDir, 'package.json'); | ||
try { | ||
await fs.access(packageJsonPath); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO:
Check for deno.json
and other similar files that may exist. This is fine for now.
This PR has more changes than just what is expected. Can you please rebase, or change the branch it merges into? I think you have stacked PRs but this is on the top of the stack and reapplies changes from your other PRs. |
What changed / motivation ?
Final follow up to #790 for cache portability/reusability
Testing
tests pass~~
Contribution Guidelines