Skip to content

Commit d3382a7

Browse files
Merge branch 'v26' into warship-afk-handling
2 parents 32bbdf2 + 3fd38e7 commit d3382a7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+565
-82
lines changed

jest.config.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@ export default {
1111
},
1212
transform: {
1313
"^.+\\.tsx?$": ["@swc/jest"],
14+
"^.+\\.mjs$": ["@swc/jest"],
15+
"^.+\\.js$": ["@swc/jest"],
1416
},
15-
transformIgnorePatterns: ["node_modules/(?!(node:)/)"],
17+
transformIgnorePatterns: [
18+
"node_modules/(?!(nanoid|@jsep|fastpriorityqueue|@datastructures-js)/)",
19+
],
1620
collectCoverageFrom: ["src/**/*.ts", "!src/**/*.d.ts"],
1721
coverageThreshold: {
1822
global: {
981 KB
Loading
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "Achiran",
3+
"nations": [
4+
{
5+
"coordinates": [785, 985],
6+
"flag": "ie",
7+
"name": "Inishmore",
8+
"strength": 1
9+
},
10+
{
11+
"coordinates": [1360, 1360],
12+
"flag": "ie",
13+
"name": "Inishmann",
14+
"strength": 2
15+
},
16+
{
17+
"coordinates": [1630, 1515],
18+
"flag": "ie",
19+
"name": "Inisheer",
20+
"strength": 1
21+
},
22+
{
23+
"coordinates": [1400, 480],
24+
"flag": "ie",
25+
"name": "Achill",
26+
"strength": 2
27+
}
28+
]
29+
}

map-generator/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ var maps = []struct {
1616
{Name: "africa"},
1717
{Name: "asia"},
1818
{Name: "australia"},
19+
{Name: "achiran"},
1920
{Name: "baikal"},
2021
{Name: "betweentwoseas"},
2122
{Name: "blacksea"},
436 Bytes
Loading
280 Bytes
Loading
330 Bytes
Loading
476 Bytes
Loading
310 Bytes
Loading
467 Bytes
Loading

0 commit comments

Comments
 (0)