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

Allow package.json to be located in subdirectories by processing paths #1379

Open
MaxiGalaxi opened this issue Apr 1, 2025 · 0 comments
Open

Comments

@MaxiGalaxi
Copy link

Description

Enable the NpmProvider to locate and process package.json files that are not in the root directory by correctly handling and resolving paths from the project root.

Possible Solution

npm_provider.py:

@property
def package_file(self) -> Path:
    package_path = next(
        (Path(p) for p in self.config.settings["version_files"] if p.endswith("package.json")),
        None
    )
    if package_path is None:
        raise FileNotFoundError("No package.json found in version_files")
    return package_path

Additional context

No response

Additional context

No response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant