-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
John McDowell
committed
Jun 2, 2023
1 parent
c39e2f7
commit 354f4b4
Showing
261 changed files
with
16,835 additions
and
5,042 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,3 +31,4 @@ java/classes | |
app/autotest | ||
app/localhost | ||
|
||
node_modules/ |
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 |
---|---|---|
@@ -0,0 +1,83 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "web-app", | ||
"type": "shell", | ||
"linux": { | ||
"command": "${env:SHELL}" | ||
}, | ||
"windows": { | ||
"command": "pwsh" | ||
}, | ||
"isBackground": true, | ||
"options": { | ||
"cwd": "${workspaceFolder}/packages/web-app" | ||
}, | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "never", | ||
"focus": false, | ||
"panel": "dedicated", | ||
"showReuseMessage": false, | ||
"clear": false, | ||
"close": false | ||
}, | ||
"runOptions": { | ||
"runOn": "folderOpen" | ||
} | ||
}, | ||
{ | ||
"label": "native-app", | ||
"type": "shell", | ||
"linux": { | ||
"command": "${env:SHELL}" | ||
}, | ||
"windows": { | ||
"command": "pwsh" | ||
}, | ||
"isBackground": true, | ||
"options": { | ||
"cwd": "${workspaceFolder}/packages/native-app" | ||
}, | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "never", | ||
"focus": false, | ||
"panel": "dedicated", | ||
"showReuseMessage": false, | ||
"clear": false, | ||
"close": false | ||
}, | ||
"runOptions": { | ||
"runOn": "folderOpen" | ||
} | ||
}, | ||
{ | ||
"label": "common", | ||
"type": "shell", | ||
"linux": { | ||
"command": "${env:SHELL}" | ||
}, | ||
"windows": { | ||
"command": "pwsh" | ||
}, | ||
"isBackground": true, | ||
"options": { | ||
"cwd": "${workspaceFolder}/packages/common" | ||
}, | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "never", | ||
"focus": false, | ||
"panel": "dedicated", | ||
"showReuseMessage": false, | ||
"clear": false, | ||
"close": false | ||
}, | ||
"runOptions": { | ||
"runOn": "folderOpen" | ||
} | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"private": true, | ||
"scripts": { | ||
"clean": "rimraf node_modules", | ||
"clean:full": "yarn clean && cd packages/common && yarn clean && cd ../web-app && yarn clean && cd ../native-app && yarn clean" | ||
}, | ||
"workspaces": { | ||
"packages": [ | ||
"packages/common", | ||
"packages/diplicity-common-internal", | ||
"packages/web-app", | ||
"packages/native-app" | ||
] | ||
} | ||
} |
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,4 +1,5 @@ | ||
node_modules | ||
dist | ||
lib | ||
yarn-error.log | ||
yarn-error.log | ||
.turbo |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module.exports = { | ||
roots: ["<rootDir>/src"], | ||
transform: { | ||
"^.+\\.tsx?$": "ts-jest", | ||
}, | ||
testRegex: "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$", | ||
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"], | ||
}; |
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 was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
28 changes: 0 additions & 28 deletions
28
packages/common/src/hooks/__tests__/useFeedbackWrapper.unit.test.tsx
This file was deleted.
Oops, something went wrong.
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,9 +1,12 @@ | ||
export { default as useCreateGame } from "./useCreateGame"; | ||
export { default as useCreateOrderMenu } from "./useCreateOrderMenu"; | ||
export { default as useCreateGameForm } from "./useCreateGameForm"; | ||
// export { default as useCreateOrderMenu } from "./useCreateOrderMenu"; | ||
export { default as useFeedbackWrapper } from "./useFeedbackWrapper"; | ||
export { default as useGameCard } from "./useGameCard"; | ||
export { default as useGameList } from "./useGameList"; | ||
export { default as useMap } from "./useMap"; | ||
export { default as useGameDetailView } from "./useGameDetailView"; | ||
export { default as useGameInfoView } from "./useGameInfoView"; | ||
export { default as useGameListView } from "./useGameListView"; | ||
export { default as useMapComponentView } from "./useMapComponentView"; | ||
export { default as useOrders } from "./useOrders"; | ||
export { default as usePageLoad, useLazyPageLoad } from "./usePageLoad"; | ||
export { default as usePhaseSelector } from "./usePhaseSelector"; | ||
export { default as usePlayerInfoView } from "./usePlayerInfoView"; | ||
export { default as useVariantInfoView } from "./useVariantInfoView"; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
354f4b4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Coverage report for
packages/common
❌ An unexpected error occurred. For more details, check console
Test suite run failed
Failed tests: 4/5. Failed suites: 3/4.
Report generated by 🧪jest coverage report action from 354f4b4
354f4b4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Coverage report for
packages/native-app
❌ An unexpected error occurred. For more details, check console
Test suite run failed
Failed tests: 30/35. Failed suites: 37/42.
Report generated by 🧪jest coverage report action from 354f4b4