Skip to content

Commit

Permalink
fix(scripts): fix a bug in the elements script, bump throttler
Browse files Browse the repository at this point in the history
- [x] fix the script that generates the elements bootstrap script;
- [x] bump nestjs throttler;
  • Loading branch information
rfprod committed Jun 15, 2024
1 parent 5a58315 commit 4a33082
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@nestjs/platform-ws": "10.3.9",
"@nestjs/serve-static": "4.0.2",
"@nestjs/swagger": "7.3.1",
"@nestjs/throttler": "5.1.2",
"@nestjs/throttler": "5.2.0",
"@nestjs/websockets": "10.3.9",
"axios": "1.7.2",
"cache-manager": "5.6.1",
Expand Down
2 changes: 1 addition & 1 deletion functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@grpc/grpc-js": "1.10.9",
"@grpc/proto-loader": "0.7.13",
"@nestjs/apollo": "12.1.0",
"@nestjs/throttler": "5.1.2",
"@nestjs/throttler": "5.2.0",
"@nestjs/axios": "3.0.2",
"@nestjs/common": "10.3.9",
"@nestjs/config": "3.2.2",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
"@nestjs/platform-ws": "10.3.9",
"@nestjs/serve-static": "4.0.2",
"@nestjs/swagger": "7.3.1",
"@nestjs/throttler": "5.1.2",
"@nestjs/throttler": "5.2.0",
"@nestjs/websockets": "10.3.9",
"apollo-angular": "7.0.2",
"apollo-upload-client": "18.0.1",
Expand Down
4 changes: 2 additions & 2 deletions tools/shell/generate-elements-bootstrap-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ generateBootstrapScript() {

local BOOTSTRAP_SCRIPT_DIST_PATH="$1/$2"
local EMELENT_PROJECT_NAME="$2"
local DIST_INDEX_HTML_PATH="$BOOTSTRAP_SCRIPT_DIST_PATH/index.html"
local BOOTSTRAP_SCRIPT_FILE_PATH="$BOOTSTRAP_SCRIPT_DIST_PATH/bootstrap.js"
local DIST_INDEX_HTML_PATH="$BOOTSTRAP_SCRIPT_DIST_PATH/browser/index.html"
local BOOTSTRAP_SCRIPT_FILE_PATH="$BOOTSTRAP_SCRIPT_DIST_PATH/browser/bootstrap.js"

printNameAndValue "boostrap script file path" "$BOOTSTRAP_SCRIPT_FILE_PATH"
printGap
Expand Down

0 comments on commit 4a33082

Please sign in to comment.