Skip to content

Commit 06ba236

Browse files
committed
new eslint
1 parent 948349d commit 06ba236

30 files changed

+200
-207
lines changed

packages/build/package.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,12 @@
3838
"shelljs": "^0.8.5"
3939
},
4040
"devDependencies": {
41-
"@eslint-sets/eslint-config-ts": "^5.14.0",
41+
"@eslint-sets/eslint-config": "^6.2.0",
4242
"@types/node": "^24.10.2",
4343
"@types/shelljs": "^0.8.17",
4444
"cross-env": "^7.0.3",
45-
"eslint": "^8.57.1",
45+
"eslint": "^9.39.4",
4646
"madge": "^8.0.0",
47-
"prettier": "^3.7.4",
48-
"prettier-config-common": "^1.4.0",
4947
"tsnd": "^1.1.0",
5048
"typescript": "^5.9.3"
5149
},

packages/build/tsconfig.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"compilerOptions": {
44
// "composite": true,
55
"target": "ESNext",
6+
"baseUrl": ".",
7+
"rootDir": "src",
68
"module": "ESNext",
7-
"sourceMap": true,
9+
"paths": {},
810
"declaration": true,
911
"emitDeclarationOnly": true,
10-
"rootDir": "src",
1112
"outDir": "temp",
12-
"baseUrl": ".",
13-
"paths": {}
13+
"sourceMap": true
1414
}
1515
}

packages/build/typedoc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
json: 'typedoc/out.json',
55
name: 'index.md',
66
includeVersion: true,
7-
readme: 'README.md'
7+
readme: 'README.md',
88
// emit: true,
99
// exclude: '',
1010
// externalPattern: '',
Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
declare module 'node-apollo' {
2-
export function createEnvFile(envConfig: any): void
3-
4-
export function remoteConfigService(config: any): any
5-
6-
export function remoteConfigServiceFromCache(config: any): any
7-
8-
export function remoteConfigServiceSikpCache(config: any): any
9-
10-
export function remoteConfigServiceSkipCache(config: any): any
11-
12-
export function setEnv(): void
13-
}
1+
declare module 'node-apollo' {
2+
export function createEnvFile(envConfig: any): void
3+
4+
export function remoteConfigService(config: any): any
5+
6+
export function remoteConfigServiceFromCache(config: any): any
7+
8+
export function remoteConfigServiceSikpCache(config: any): any
9+
10+
export function remoteConfigServiceSkipCache(config: any): any
11+
12+
export function setEnv(): void
13+
}

packages/cache/package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,17 @@
3131
"dependencies": {
3232
"@gitmars/git": "workspace:*",
3333
"@gitmars/utils": "workspace:*",
34-
"js-cool": "^5.23.1",
34+
"js-cool": "^5.23.2",
3535
"os-lang": "^3.3.1",
3636
"shelljs": "^0.8.5"
3737
},
3838
"devDependencies": {
39-
"@eslint-sets/eslint-config-ts": "^5.14.0",
39+
"@eslint-sets/eslint-config": "^6.2.0",
4040
"@types/node": "^24.10.2",
4141
"@types/shelljs": "^0.8.17",
4242
"cross-env": "^7.0.3",
43-
"eslint": "^8.57.1",
43+
"eslint": "^9.39.4",
4444
"madge": "^8.0.0",
45-
"prettier": "^3.7.4",
46-
"prettier-config-common": "^1.4.0",
4745
"tsnd": "^1.1.0",
4846
"typescript": "^5.9.3"
4947
},

packages/cache/tsconfig.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"compilerOptions": {
44
// "composite": true,
55
"target": "ESNext",
6+
"baseUrl": ".",
7+
"rootDir": "src",
68
"module": "ESNext",
7-
"sourceMap": true,
9+
"paths": {},
810
"declaration": true,
911
"emitDeclarationOnly": true,
10-
"rootDir": "src",
1112
"outDir": "temp",
12-
"baseUrl": ".",
13-
"paths": {}
13+
"sourceMap": true
1414
}
1515
}

packages/cache/typedoc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
json: 'typedoc/out.json',
55
name: 'index.md',
66
includeVersion: true,
7-
readme: 'README.md'
7+
readme: 'README.md',
88
// emit: true,
99
// exclude: '',
1010
// externalPattern: '',

packages/core/package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,19 @@
3333
"@gitmars/utils": "workspace:*",
3434
"@jssj/request": "^1.1.0",
3535
"chalk": "^4.1.2",
36-
"js-cool": "^5.23.1",
36+
"js-cool": "^5.23.2",
3737
"ora": "^5.4.1",
3838
"os-lang": "^3.3.1",
3939
"semver-diff": "^5.0.0",
4040
"shelljs": "^0.8.5"
4141
},
4242
"devDependencies": {
43-
"@eslint-sets/eslint-config-ts": "^5.14.0",
43+
"@eslint-sets/eslint-config": "^6.2.0",
4444
"@types/node": "^24.10.2",
4545
"@types/shelljs": "^0.8.17",
4646
"cross-env": "^7.0.3",
47-
"eslint": "^8.57.1",
47+
"eslint": "^9.39.4",
4848
"madge": "^8.0.0",
49-
"prettier": "^3.7.4",
50-
"prettier-config-common": "^1.4.0",
5149
"tsnd": "^1.1.0",
5250
"typescript": "^5.9.3"
5351
},

packages/core/tsconfig.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"compilerOptions": {
44
// "composite": true,
55
"target": "ESNext",
6+
"baseUrl": ".",
7+
"rootDir": "src",
68
"module": "ESNext",
7-
"sourceMap": true,
9+
"paths": {},
810
"declaration": true,
911
"emitDeclarationOnly": true,
10-
"rootDir": "src",
1112
"outDir": "temp",
12-
"baseUrl": ".",
13-
"paths": {}
13+
"sourceMap": true
1414
}
1515
}

packages/core/typedoc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
json: 'typedoc/out.json',
55
name: 'index.md',
66
includeVersion: true,
7-
readme: 'README.md'
7+
readme: 'README.md',
88
// emit: true,
99
// exclude: '',
1010
// externalPattern: '',

0 commit comments

Comments
 (0)