-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: cleanup and improve code and project setup
- Loading branch information
1 parent
02580ba
commit e26684d
Showing
673 changed files
with
37,501 additions
and
35,442 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 |
---|---|---|
|
@@ -29,4 +29,6 @@ lab | |
__snapshots__ | ||
|
||
.tshy-build | ||
.tshy | ||
.tshy | ||
|
||
gcloud-credentials.json |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,31 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Jest: current file", | ||
"program": "${workspaceFolder}/node_modules/.bin/jest", | ||
"args": ["${fileBasenameNoExtension}", "--config", "${workspaceFolder}/jest.config.js"], | ||
"console": "integratedTerminal" | ||
}, | ||
|
||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Jest: current file", | ||
//"env": { "NODE_ENV": "test" }, | ||
"program": "${workspaceFolder}/node_modules/.bin/jest", | ||
"args": ["${fileBasenameNoExtension}", "--config", "${workspaceFolder}/jest.config.js"], | ||
"console": "integratedTerminal" | ||
}, | ||
|
||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Jest debug current file", | ||
"program": "${workspaceFolder}/node_modules/jest-cli/bin/jest", | ||
"args": [ | ||
"${fileBasename}", | ||
"--verbose", | ||
"-i", | ||
"--no-cache", | ||
"--watchAll", | ||
"--config", "${workspaceFolder}/jest.config.js" | ||
], | ||
"console": "integratedTerminal", | ||
"internalConsoleOptions": "neverOpen" | ||
} | ||
] | ||
} | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Jest debug current file", | ||
"program": "${workspaceFolder}/node_modules/jest-cli/bin/jest", | ||
"args": [ | ||
"${fileBasename}", | ||
"--verbose", | ||
"-i", | ||
"--no-cache", | ||
"--watchAll", | ||
"--config", | ||
"${workspaceFolder}/jest.config.js" | ||
], | ||
"console": "integratedTerminal", | ||
"internalConsoleOptions": "neverOpen" | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"secret_key":"secret_value", | ||
"emailProviderAuthToken":"auth_token_from_secret_store" | ||
} | ||
"secret_key": "secret_value", | ||
"emailProviderAuthToken": "auth_token_from_secret_store" | ||
} |
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.