Skip to content

Commit

Permalink
v1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
binary-person committed May 2, 2022
1 parent a4b2479 commit c28739d
Show file tree
Hide file tree
Showing 11 changed files with 1,855 additions and 176 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ src/client/*.min.*
src/client/hammerhead.js

This comment has been minimized.

Copy link
@LolinEeDhEll

LolinEeDhEll Oct 30, 2023

Bro i need help nothing will load

.env

# don't commit session data
# don't commit session and cache data
sessions/*
cache-js/*

# but commit the empty folders
!sessions/.gitkeep
!cache-js/.gitkeep

# ignore any custom configurations
/config.js
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
// 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": [
{
"type": "pwa-node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/server/index.js"
}
]
}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v1.2.2

- add disk cache option for processed JS files. fixes huge server memory usage and enables workers to share the same cache
- update `testcafe-hammerhead` to `v24.5.18`. fixes huge server slowdowns as brotli compression level is now adjusted to a much more reasonable value

## v1.2.11

- fix huge spikes of memory usage by replacing localStorage system with a custom one
Expand Down
Empty file added cache-js/.gitkeep
Empty file.
Loading

0 comments on commit c28739d

Please sign in to comment.