-
-
Notifications
You must be signed in to change notification settings - Fork 109
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
fix: keep lockfile up to date example windows regression #215
Conversation
sha256 = "a62838a8bb32478db2cf557b59279e566d628e064f91071daf1986c32463c2c9", | ||
strip_prefix = "bazel-lib-1.2.1", | ||
url = "https://github.com/aspect-build/bazel-lib/archive/refs/tags/v1.2.1.tar.gz", |
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.
Needed for the copy_to_bin same file different target fix.
@@ -12,12 +12,18 @@ js_test( | |||
":pnpm-lock.yaml", | |||
], | |||
entry_point = "assert_lockfile_frozen.js", | |||
env = { | |||
"APPDATA": "unused_but_pnpm_fails_if_not_set_on_windows" |
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.
what is this black magic?
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.
🧙♂️
@@ -12,12 +12,18 @@ js_test( | |||
":pnpm-lock.yaml", | |||
], | |||
entry_point = "assert_lockfile_frozen.js", | |||
env = { | |||
"APPDATA": "unused_but_pnpm_fails_if_not_set_on_windows" |
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.
The script sets a store dir inside of the output tree, but pnpm still tries to resolve some path to a default cache dir. It just needs to not be undefined.
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.
Can you add a comment with some more context for future reference?
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.
Added
9a4739c
to
6b99152
Compare
6b99152
to
23ab3ad
Compare
This is the last windows regression aside from the
node-gyp
issue.