added d.ts to clean
This commit is contained in:
parent
c66889889e
commit
cc19f88ad2
3 changed files with 4 additions and 3 deletions
|
|
@ -4,8 +4,8 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve",
|
"start": "ng serve",
|
||||||
"dev": "ng serve --port 5173 --host 0.0.0.0",
|
"devvvv": "ng serve --port 5173 --host 0.0.0.0",
|
||||||
"build": "ng build",
|
"buildd": "ng build",
|
||||||
"watch": "ng build --watch --configuration development",
|
"watch": "ng build --watch --configuration development",
|
||||||
"test": "ng test"
|
"test": "ng test"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ export class QueueService {
|
||||||
host: process.env.DRAGONFLY_HOST || 'localhost',
|
host: process.env.DRAGONFLY_HOST || 'localhost',
|
||||||
port: parseInt(process.env.DRAGONFLY_PORT || '6379'),
|
port: parseInt(process.env.DRAGONFLY_PORT || '6379'),
|
||||||
// Add these Redis-specific options to fix the undeclared key issue
|
// Add these Redis-specific options to fix the undeclared key issue
|
||||||
maxRetriesPerRequest: 3,
|
maxRetriesPerRequest: null,
|
||||||
retryDelayOnFailover: 100,
|
retryDelayOnFailover: 100,
|
||||||
enableReadyCheck: false,
|
enableReadyCheck: false,
|
||||||
lazyConnect: true,
|
lazyConnect: true,
|
||||||
|
|
|
||||||
|
|
@ -116,6 +116,7 @@ if ($all -or $fresh) {
|
||||||
Remove-FilesByPattern ".eslintcache" "ESLint cache files"
|
Remove-FilesByPattern ".eslintcache" "ESLint cache files"
|
||||||
Remove-FilesByPattern ".stylelintcache" "Stylelint cache files"
|
Remove-FilesByPattern ".stylelintcache" "Stylelint cache files"
|
||||||
Remove-FilesByPattern ".prettiercache" "Prettier cache files"
|
Remove-FilesByPattern ".prettiercache" "Prettier cache files"
|
||||||
|
Remove-FilesByPattern "*.d.ts" "TypeScript build info files"
|
||||||
|
|
||||||
# Database files
|
# Database files
|
||||||
Remove-FilesByPattern "*.db" "database files"
|
Remove-FilesByPattern "*.db" "database files"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue