Skip to content
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
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,7 @@
"node_modules": true,
"demos/platform/lib": true
},
// Exclude auto-generated Lexical state fixtures from SonarLint analysis
"sonarlint.analysisExcludesStandalone": ["**/test-data/src/data/2sa.lexical.*.ts"],
"typescript.tsdk": "node_modules/typescript/lib"
}
2 changes: 1 addition & 1 deletion demos/platform/src/app/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ interface Annotations {

const isTesting = process.env.NODE_ENV === "testing";
const webUsj = usxStringToUsj(isTesting ? WEB_PSA_USX : WEB_PSA_CH1_USX);
const editorUsj = webUsj; // isTesting ? webUsj : TJ_USJ;
const editorUsj = webUsj; // isTesting ? webUsj : usj2Sa;
const defaultScrRef: SerializedVerseRef = { book: "PSA", chapterNum: 1, verseNum: 1 };
// Word "man" inside first q1 of PSA 1:1.
const annotationRange1: AnnotationRange = {
Expand Down
3 changes: 2 additions & 1 deletion libs/shared-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
"quill-delta": "^5.1.0"
},
"devDependencies": {
"shared": "workspace:~"
"shared": "workspace:~",
"test-data": "workspace:~"
},
"repository": {
"type": "git",
Expand Down

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions libs/shared-react/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
},
{
"path": "../shared/tsconfig.lib.json"
},
{
"path": "../test-data/tsconfig.lib.json"
}
]
}
1 change: 1 addition & 0 deletions libs/test-data/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
},
"dependencies": {
"@eten-tech-foundation/scripture-utilities": "workspace:~",
"lexical": "^0.40.0",
"tslib": "^2.8.1"
}
}
Loading
Loading