Simplify CI/CD pipeline and improve TypeScript configuration#5
Merged
Simplify CI/CD pipeline and improve TypeScript configuration#5
Conversation
- Update src/tsconfig.json: remove declarationDir, fix spacing and target case - Update CI workflow: use single Node.js version (24.x), remove coveralls - Update .gitignore: add dist, dist-test, .idea entries - Update package.json: use npm_config_pattern for test-some, bump @types/node https://claude.ai/code/session_016v4o2bBMLHRBC48hcyvqaK
- go/multisource.go: types, options, resolvers, processors, API - go/plugin.go: jsonic plugin with @path directive support - go/multisource_test.go: 14 tests covering core functionality - CI workflow: add build-go job matching jsonicjs/ini pattern https://claude.ai/code/session_016v4o2bBMLHRBC48hcyvqaK
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.
Summary
This PR streamlines the CI/CD pipeline by removing coverage reporting steps and cleans up the TypeScript configuration for better maintainability.
Key Changes
CI/CD Pipeline Simplification
latestNode.js version from test matrix, keeping only24.xTypeScript Configuration Improvements
tsconfig.json(spacing around colons)declarationDiroption (declaration files are now output tooutDir)targetto use consistent casing (ES2021)Project Configuration Updates
distanddist-testdirectories to.gitignore.ideadirectory to.gitignore(IDE configuration)test-somescript to use$npm_config_patterninstead of$TEST_PATTERNfor better npm compatibility@types/nodedependency from^25.3.3to^25.4.0Implementation Details
The TypeScript configuration changes consolidate declaration file output into the main
outDirrather than using a separatedeclarationDir, simplifying the build output structure. The CI/CD changes focus the testing pipeline on the most relevant Node.js version while removing the overhead of coverage reporting infrastructure.https://claude.ai/code/session_016v4o2bBMLHRBC48hcyvqaK