Skip to content

Commit

Permalink
Merge pull request open-source-labs#89 from oslabs-beta/staging
Browse files Browse the repository at this point in the history
Cache Invalidation, LokiJS migration, and Quell-server performance improvements
  • Loading branch information
jcroadmovie authored Aug 19, 2021
2 parents 8b861c6 + e31bca4 commit bbc6d98
Show file tree
Hide file tree
Showing 14 changed files with 4,579 additions and 16,627 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
node_modules
.env
demo/dump.rdb
dump.rdb
dump.rdbquell-client/yarn.lock
quell-server/yarn.lock
demo/yarn.lock
30 changes: 30 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug Quell Jest Test",
"type": "pwa-node",
"request": "launch",
"runtimeArgs": [
"--inspect-brk",
"${workspaceRoot}/demo/node_modules/.bin/jest",
"${fileBasenameNoExtension}",
"--runInBand",
"--detectOpenHandles"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"name": "Quell Demo Server",
"port": 3000,
"request": "attach",
"processId": "${command:PickProcess}",
"skipFiles": ["<node_internals>/**"],
"type": "pwa-node"
}
]
}
Loading

0 comments on commit bbc6d98

Please sign in to comment.