Skip to content
  • Sponsor
  • Notifications You must be signed in to change notification settings
  • Fork 68

Commit aea08af

Browse files
committedMar 8, 2024·
Merge branch 'client-restructure' into better-multi-domain
2 parents ae45495 + 1e23a55 commit aea08af

File tree

429 files changed

+6228
-5611
lines changed

Some content is hidden

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

429 files changed

+6228
-5611
lines changed
 

‎.eslintrc

+11-37
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
{
2-
"extends": [
3-
"airbnb",
4-
"airbnb/rules/react",
5-
"eslint:recommended",
6-
"prettier"
7-
],
2+
"extends": ["airbnb", "airbnb/rules/react", "eslint:recommended", "prettier"],
83
"parserOptions": {
94
"ecmaVersion": "latest"
105
},
@@ -74,42 +69,21 @@
7469
},
7570
"settings": {
7671
"node": {
77-
"extensions": [
78-
".mjs",
79-
".js",
80-
".jsx",
81-
".ts",
82-
".tsx"
83-
]
72+
"extensions": [".mjs", ".js", ".jsx", ".ts", ".tsx"]
8473
},
8574
"import/resolver": {
8675
"alias": {
8776
"map": [
88-
[
89-
"@components",
90-
"./src/components/"
91-
],
92-
[
93-
"@services",
94-
"./src/services/"
95-
],
96-
[
97-
"@hooks",
98-
"./src/hooks/"
99-
],
100-
[
101-
"@assets",
102-
"./src/assets/"
103-
]
77+
["@components", "./src/components/"],
78+
["@features", "./src/features/"],
79+
["@services", "./src/services/"],
80+
["@hooks", "./src/hooks/"],
81+
["@assets", "./src/assets/"],
82+
["@utils", "./src/utils/"],
83+
["@store", "./src/store/"]
10484
],
105-
"extensions": [
106-
".mjs",
107-
".js",
108-
".jsx",
109-
".ts",
110-
".tsx"
111-
]
85+
"extensions": [".mjs", ".js", ".jsx", ".ts", ".tsx"]
11286
}
11387
}
11488
}
115-
}
89+
}

‎CHANGELOG.md

+47
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
# [1.30.0-develop.17](https://github.com/WatWowMap/ReactMap/compare/v1.30.0-develop.16...v1.30.0-develop.17) (2024-03-05)
2+
3+
4+
### Bug Fixes
5+
6+
* attempt to keep available/masterfile more in sync ([1961af3](https://github.com/WatWowMap/ReactMap/commit/1961af3e3f1953c19f330bec3d191a3b6ef5dca3))
7+
8+
# [1.30.0-develop.16](https://github.com/WatWowMap/ReactMap/compare/v1.30.0-develop.15...v1.30.0-develop.16) (2024-03-04)
9+
10+
11+
### Bug Fixes
12+
13+
* 0iv/100iv overrides in a specific scenario ([aebebf1](https://github.com/WatWowMap/ReactMap/commit/aebebf10f86a0562fd4eb098fbe0cf364453dc4b))
14+
15+
# [1.30.0-develop.15](https://github.com/WatWowMap/ReactMap/compare/v1.30.0-develop.14...v1.30.0-develop.15) (2024-03-02)
16+
17+
18+
### Bug Fixes
19+
20+
* oops, swap ternary ([bdcfaf4](https://github.com/WatWowMap/ReactMap/commit/bdcfaf4d92fc64d1776e6f87e11713736621874d))
21+
22+
# [1.30.0-develop.14](https://github.com/WatWowMap/ReactMap/compare/v1.30.0-develop.13...v1.30.0-develop.14) (2024-03-02)
23+
24+
25+
### Bug Fixes
26+
27+
* adjust wayfarer line weights ([e6c0696](https://github.com/WatWowMap/ReactMap/commit/e6c0696159c1feceda41aea12b9e16b2a5cd7838))
28+
29+
30+
### Features
31+
32+
* spacial rend range ([374c5eb](https://github.com/WatWowMap/ReactMap/commit/374c5eb09986307fb5e2e59930e18a066b22df47))
33+
34+
# [1.30.0-develop.13](https://github.com/WatWowMap/ReactMap/compare/v1.30.0-develop.12...v1.30.0-develop.13) (2024-03-01)
35+
36+
37+
### Bug Fixes
38+
39+
* add missing `key` prop & simplify ([05be65c](https://github.com/WatWowMap/ReactMap/commit/05be65c93537c061c91db870f9f39a59da2684d1))
40+
41+
# [1.30.0-develop.12](https://github.com/WatWowMap/ReactMap/compare/v1.30.0-develop.11...v1.30.0-develop.12) (2024-02-29)
42+
43+
44+
### Bug Fixes
45+
46+
* improved jsdocs for search method ([5dcf288](https://github.com/WatWowMap/ReactMap/commit/5dcf28810be5ad1063abee7ae234993a3c42be57))
47+
148
# [1.30.0-develop.11](https://github.com/WatWowMap/ReactMap/compare/v1.30.0-develop.10...v1.30.0-develop.11) (2024-02-27)
249

350

0 commit comments

Comments
 (0)