feat(typescript): add customSubpathExports configuration option#11825
Closed
feat(typescript): add customSubpathExports configuration option#11825
Conversation
Co-Authored-By: judah@buildwithfern.com <jsklan.development@gmail.com>
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Refs: Request from judah@buildwithfern.com (@jsklan)
Adds a new
customSubpathExportsconfiguration option for the TypeScript SDK generator. This allows SDK maintainers to define custom subpath exports in the generatedpackage.json, enabling modular packages where optional features can be imported via subpaths (e.g.,import { BedrockClient } from 'cohere-ai/aws').Link to Devin run: https://app.devin.ai/sessions/63cecf1472274d33b8facb2cc909c130
Changes Made
customSubpathExportsinTypescriptCustomConfigSchema.tssupporting both simple string exports and complex conditional exports withtypes/import/require/defaultSdkCustomConfig.tsand parsing inSdkGeneratorCli.tsSdkGenerator.ConfigtoTypescriptProjecthierarchySimpleTypescriptProject.generatePackageJson()to merge custom exports after the main "." export and before "./package.json"exhaustive/custom-subpath-exportsdemonstrating the featureversions.ymlwith changelog entry for version 3.46.0Testing
exhaustive:custom-subpath-exportspassespackage.jsoncontains merged exports in correct orderHuman Review Checklist
BundledTypescriptProjectdoesn't need this feature (currently onlySimpleTypescriptProjectsupports it).→ custom exports →./package.json