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

refactor: remove unused src_directory from NpmPackageStoreInfo #1566

Merged
merged 1 commit into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion npm/private/npm_package_store.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,6 @@ deps of npm_package_store must be in the same package.""" % (ctx.label.package,
package = package,
version = version,
ref_deps = direct_ref_deps,
src_directory = src_directory,
virtual_store_directory = virtual_store_directory,
files = files_depset,
transitive_files = transitive_files_depset,
Expand Down
1 change: 0 additions & 1 deletion npm/private/npm_package_store_info.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ NpmPackageStoreInfo = provider(
"package": "name of this npm package",
"version": "version of this npm package",
"ref_deps": "dictionary of dependency npm_package_store ref targets",
"src_directory": "the directory (typically a TreeArtifact) that contains the package sources",
"virtual_store_directory": "the TreeArtifact of this npm package's virtual store location",
"files": "depset of files that are part of the npm package",
"transitive_files": "depset of the files that are part of the npm package and its transitive deps",
Expand Down
Loading