-
Notifications
You must be signed in to change notification settings - Fork 5
CCM-12352: Internal package refactor #198
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
Merged
masl2
merged 21 commits into
main
from
feature/CCM-12352-refactor-helpers-and-datastore
Oct 29, 2025
Merged
Changes from 15 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
4bca3e4
Refactor datastore package
m-houston 92fa9b6
Clean up tests
m-houston f1b7f63
Merge branch 'main' into feature/CCM-12352-refactor-helpers-and-datas…
m-houston cc79105
Make markdownlint config separate for specification docs
m-houston d977710
Update documentation for run functions
m-houston afaa067
Merge branch 'main' into feature/CCM-12352-refactor-helpers-and-datas…
m-houston 3fa5a8f
Fixup after merging main
m-houston e3c8315
Merge branch 'main' into feature/CCM-12352-refactor-helpers-and-datas…
m-houston 7c9a282
Merge branch 'refs/heads/main' into feature/CCM-12352-refactor-helper…
m-houston 1313be5
Update after main merge
m-houston 077a43a
Merge branch 'main' into feature/CCM-12352-refactor-helpers-and-datas…
m-houston 7a6759b
Replace newly introduced cross-package reference
m-houston b9e18db
Remove generated README.md
m-houston b1a295f
Restore dataschema diagram generation
m-houston 445f1f2
Add diagram for Supplier datastore schema
m-houston 0563699
Merge branch 'main' into feature/CCM-12352-refactor-helpers-and-datas…
m-houston de6b428
Update package-lock conflicts
m-houston b8679a3
Merge branch 'main' into feature/CCM-12352-refactor-helpers-and-datas…
masl2 62f67c1
update lock
masl2 5b54f85
CCM-12352: single package lock
masl2 55baa29
Merge branch 'main' into feature/CCM-12352-refactor-helpers-and-datas…
masl2 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| // SEE: https://github.com/DavidAnson/markdownlint/blob/main/schema/.markdownlint.yaml | ||
| { | ||
| // https://github.com/DavidAnson/markdownlint/blob/main/doc/md013.md | ||
| "MD013": false, | ||
| // https://github.com/DavidAnson/markdownlint/blob/main/doc/md024.md | ||
| "MD024": { | ||
| "siblings_only": true | ||
| }, | ||
| // https://github.com/DavidAnson/markdownlint/blob/main/doc/md033.md | ||
| "MD033": false | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| { | ||
| "versionGroups": [ | ||
| { | ||
| "dependencies": ["@internal/**", "@nhsdigital/nhs-notify-event-schemas-supplier-api"], | ||
| "specifierTypes": ["*"], | ||
| "label": "Internal deps", | ||
| "isIgnored": true | ||
| } | ||
| ] | ||
| } |
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| # Dependency directories | ||
| node_modules/ | ||
|
|
||
| # Built output | ||
| dist/ | ||
|
|
||
| # Coverage directory used by tools like istanbul | ||
| coverage/ | ||
|
|
||
| # Logs | ||
| logs | ||
| *.log | ||
| npm-debug.log* | ||
| yarn-debug.log* | ||
| yarn-error.log* | ||
|
|
||
| # Editor directories and files | ||
| .idea/ | ||
| .vscode/ | ||
| *.suo | ||
| *.ntvs* | ||
| *.njsproj | ||
| *.sln | ||
| *.sw? |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| import type { Config } from "jest"; | ||
|
|
||
| const config: Config = { | ||
| preset: "ts-jest", | ||
| testEnvironment: "node", | ||
| testMatch: ["**/src/__tests__/**/*.ts?(x)", "**/src/?(*.)+(spec|test).ts?(x)"], | ||
| collectCoverageFrom: ["src/**/*.ts"], | ||
| coveragePathIgnorePatterns: ["/node_modules/", "__tests__"], | ||
| testPathIgnorePatterns: ["/node_modules/", "/dist/"], | ||
| transform: { | ||
| "^.+\\.tsx?$": ["ts-jest", { }] | ||
| } | ||
| }; | ||
|
|
||
| export default config; |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.