-
Notifications
You must be signed in to change notification settings - Fork 469
Remove all leftovers of pinned-dependencies handling #7686
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
Conversation
c6d90d4
to
4e950ff
Compare
rescript
@rescript/darwin-arm64
@rescript/darwin-x64
@rescript/linux-arm64
@rescript/linux-x64
@rescript/win32-x64
commit: |
4e950ff
to
127fd6a
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.
This looks good to me, but I'm probably not the best to review.
source_file.implementation.parse_state = ParseState::Warning; | ||
source_file.implementation.parse_dirty = true; | ||
logs::append(package, &stderr_warnings); | ||
stderr.push_str(&stderr_warnings); | ||
} | ||
Ok((_path, Some(_))) | Ok((_path, None)) => { | ||
// If we do have stderr_warnings here, the file is not a pinned | ||
// dependency (so some external dep). We can ignore those |
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.
Ah, that's where the warnings got swallowed previously.
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.
Looks good to me on the rewatch side
@cknitt The |
@Bushuo Thanks! Updated. |
# Conflicts: # rewatch/src/build/packages.rs
426ac3b
to
99cc34b
Compare
pinned-dependencies have not really have any effect in bsb for some time.
Therefore I removed all occurrences of pinned dependencies from the codebase.
In rewatch, replaced
is_pinned_dep
andis_pinned_dep || is_local_dep
withis_local_dep
everywhere.