Skip to content

Commit

Permalink
fix: update vulnerable packages (#1560)
Browse files Browse the repository at this point in the history
  • Loading branch information
JivusAyrus authored Feb 4, 2025
1 parent 9e66cc0 commit f97e30f
Show file tree
Hide file tree
Showing 10 changed files with 554 additions and 3,169 deletions.
4 changes: 2 additions & 2 deletions cdn-server/cdn/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
"jose": "^5.2.4"
},
"devDependencies": {
"eslint": "^8.53.0",
"eslint": "^8.57.1",
"eslint-config-unjs": "^0.2.1",
"typescript": "5.5.2",
"vitest": "^2.1.8"
}
}
}
4 changes: 2 additions & 2 deletions cdn-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
},
"devDependencies": {
"@types/node": "^20.9.0",
"eslint": "^8.53.0",
"eslint": "^8.57.1",
"eslint-config-unjs": "^0.2.1",
"tsx": "^4.16.0",
"typescript": "5.5.2"
}
}
}
4 changes: 2 additions & 2 deletions cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.3.1",
"del-cli": "^5.0.0",
"eslint": "^8.52.0",
"eslint": "^8.57.1",
"eslint-config-unjs": "^0.2.1",
"eslint-plugin-require-extensions": "^0.1.3",
"prettier": "^3.0.3",
Expand All @@ -83,4 +83,4 @@
"vitest": "^2.1.8"
},
"gitHead": "c37aed755e1b19ed91d30f9b5f7041e15c56901a"
}
}
6 changes: 3 additions & 3 deletions controlplane/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
"dotenv": "^16.4.5",
"drizzle-orm": "^0.35.3",
"ejs": "^3.1.10",
"eslint": "^8.57.0",
"execa": "^9.3.0",
"eslint": "^8.57.1",
"execa": "^9.5.2",
"fastify": "^4.28.1",
"fastify-graceful-shutdown": "^4.0.1",
"fastify-plugin": "^4.5.1",
Expand Down Expand Up @@ -97,7 +97,7 @@
"@connectrpc/protoc-gen-connect-es": "^1.4.0",
"@types/cookie": "^0.6.0",
"@types/ejs": "^3.1.5",
"@types/eslint": "^8.56.2",
"@types/eslint": "^9.6.1",
"@types/lodash": "^4.14.202",
"@types/node": "^18.19.21",
"@types/nodemailer": "^6.4.14",
Expand Down
2 changes: 1 addition & 1 deletion controlplane/src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ export const LintRules: LintRuleType = {
export type Severity = 1 | 2;
export type LintSeverityLevel = 'warn' | 'error';
export type RuleLevel = Severity | LintSeverityLevel;
export type RuleLevelAndOptions<Options extends any[] = any[]> = Prepend<Partial<Options>, RuleLevel>;
export type RuleLevelAndOptions<Options extends any[] = any[]> = [RuleLevel, ...Partial<Options>];
export type RuleEntry<Options extends any[] = any[]> = RuleLevel | RuleLevelAndOptions<Options>;

export interface RulesConfig {
Expand Down
Loading

0 comments on commit f97e30f

Please sign in to comment.