-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgraded to Next v12, React v18, and Scripture-Tsv v1.2.0 * Upgrade tHelps & bible-ref-range * Bugfix 643/Splitting Source Word Fails (#648) * Upgraded to Next v12, React v18, and Scripture-Tsv v1.2.0 * Update main.yml * Fixed build command * Fixed test command by replacing jest babel with swc * Upgrade tHelps & bible-ref-range -> BETA * Refactor to fix constant redraw of word aligner. Still much cleanup to do. * cleanup. * worked on fixing state. * have aligner area working. * Does not lose split alignments. Now to work on reset. * Moved draggable part of dialog back to WordAlignerDialog * Upgraded to Next v12, React v18, and Scripture-Tsv v1.2.0 * Refactor to fix constant redraw of word aligner. Still much cleanup to do. * cleanup. * worked on fixing state. * have aligner area working. * Does not lose split alignments. Now to work on reset. * Moved draggable part of dialog back to WordAlignerDialog * Cleanup * Cleanup * Cleanup * update word-aligner-rcl * Clean out old code --------- Co-authored-by: kintsoogi <[email protected]> Co-authored-by: Kintsoogi <[email protected]> Co-authored-by: PhotoNomad0 <[email protected]> * Fix linefeed after whitespace (#649) * update scripture-resources-rcl * update scripture-resources-rcl --------- Co-authored-by: PhotoNomad0 <[email protected]> * update scripture-resources-rcl with updated uw-quotes-helper (#651) Co-authored-by: PhotoNomad0 <[email protected]> * reverting translation-helps-rcl (#653) Co-authored-by: PhotoNomad0 <[email protected]> * Tweaks for saving scripture (#654) * update dependencies for save fixes * update dependencies for save fixes --------- Co-authored-by: PhotoNomad0 <[email protected]> * update dependencies for save fixes (#655) Co-authored-by: PhotoNomad0 <[email protected]> * update dependencies for highlight fixes (#656) Co-authored-by: PhotoNomad0 <[email protected]> * Bugfix 642 / fix save of scripture edits (#657) * update dependencies for highlight fixes * update dependencies for scripture save fixes * update dependencies for scripture save fixes * update dependencies for scripture save fixes * update dependencies for scripture save fixes --------- Co-authored-by: PhotoNomad0 <[email protected]> * Bugfix 642 / minimize logging (#658) * update dependencies for scripture save fixes * update dependencies for scripture save fixes * update dependencies for scripture save fixes --------- Co-authored-by: PhotoNomad0 <[email protected]> * rebuild (#659) Co-authored-by: PhotoNomad0 <[email protected]> * Rebuild mcleanb (#660) * rebuild * rebuild --------- Co-authored-by: PhotoNomad0 <[email protected]> --------- Co-authored-by: kintsoogi <[email protected]> Co-authored-by: Kintsoogi <[email protected]> Co-authored-by: PhotoNomad0 <[email protected]>
- Loading branch information
1 parent
8f589a0
commit c07f415
Showing
16 changed files
with
1,779 additions
and
2,159 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [16.19.0] | ||
node-version: [20.12.2] | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
|
This file contains 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 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 |
---|---|---|
@@ -1,37 +1,34 @@ | ||
module.exports = { | ||
'roots': ['<rootDir>'], | ||
// 'transform': { '^.+\\.ts?$': 'ts-jest' }, | ||
'moduleFileExtensions': [ | ||
'js', | ||
'ts', | ||
], | ||
'coveragePathIgnorePatterns': [ | ||
roots: ['<rootDir>'], | ||
transform: { | ||
'^.+\\.(t|j)sx?$': ['@swc/jest'], | ||
}, | ||
moduleFileExtensions: ['js', 'ts'], | ||
coveragePathIgnorePatterns: [ | ||
'/node_modules/', | ||
'/.yalc/', | ||
'scripts', | ||
'cypress', | ||
], | ||
'testPathIgnorePatterns': [ | ||
testPathIgnorePatterns: [ | ||
'/node_modules/', | ||
'components', | ||
'cypress', | ||
'/.yalc/', | ||
'scripts', | ||
], | ||
'testMatch': [ | ||
'**/?(*.)+(spec|test).[jt]s?(x)', | ||
], | ||
'moduleNameMapper': { | ||
testMatch: ['**/?(*.)+(spec|test).[jt]s?(x)'], | ||
moduleNameMapper: { | ||
'^@common/(.*)$': '<rootDir>/src/common/$1', | ||
'^@components/(.*)$': '<rootDir>/src/components/$1', | ||
'^@context/(.*)$': '<rootDir>/src/context/$1', | ||
'^@hooks/(.*)$': '<rootDir>/src/hooks/$1', | ||
'^@utils/(.*)$': '<rootDir>/src/utils/$1', | ||
}, | ||
'collectCoverageFrom': [ | ||
collectCoverageFrom: [ | ||
'./src/**.{js,jsx,ts}', | ||
'!**/node_modules/**', | ||
'!**/vendor/**', | ||
], | ||
'coverageDirectory': 'jest-coverage', | ||
coverageDirectory: 'jest-coverage', | ||
} |
This file contains 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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[build.environment] | ||
NODE_VERSION = "20.12.0" | ||
|
||
[build] | ||
command = "npm run build" | ||
publish = "out" | ||
|
This file contains 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 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 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 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 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 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
Oops, something went wrong.