Skip to content

Commit 97985d8

Browse files
Merge pull request #5353 from OneCommunityGlobal/development
Frontend Release to Main [4.96]
2 parents cc96e30 + 0cbebd3 commit 97985d8

200 files changed

Lines changed: 24376 additions & 18708 deletions

File tree

Some content is hidden

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

.husky/pre-push

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ if [ -z "$changed_files" ]; then
2525
exit 0
2626
fi
2727

28+
# Skip checks if any outgoing commit is a merge commit
29+
if git log @{upstream}..HEAD --merges --oneline | grep -q .; then
30+
echo "ℹ️ Outgoing commits include a merge commit. Skipping lint/test checks."
31+
exit 0
32+
fi
33+
2834
if ! printf '%s\n' "$changed_files" | grep -qvE '^\.husky/'; then
2935
echo "ℹ️ Only Husky hook changes detected. Skipping full test and lint checks."
3036
exit 0

.stylelintrc

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,22 @@
66
"node_modules/**/*.css"
77
],
88
"rules": {
9-
"no-duplicate-selectors": true,
9+
"no-duplicate-selectors": [true, {
10+
"disallowInList": false
11+
}],
1012
"selector-pseudo-class-no-unknown": [
1113
true,
1214
{ "ignorePseudoClasses": ["global", "local"] }
1315
],
1416
"selector-class-pattern": null,
1517
"selector-id-pattern": null
16-
}
17-
}
18+
},
19+
"overrides": [
20+
{
21+
"files": ["**/*.module.css"],
22+
"rules": {
23+
"no-duplicate-selectors": null
24+
}
25+
}
26+
]
27+
}

conflict_cplog.txt

2.81 KB
Binary file not shown.

conflict_finalday.txt

16.1 KB
Binary file not shown.

conflict_owner.txt

4.06 KB
Binary file not shown.

conflict_popup.txt

1.74 KB
Binary file not shown.

conflict_spg.txt

26.3 KB
Binary file not shown.

conflict_usertable.txt

2.4 KB
Binary file not shown.

conflict_weekly.txt

1.74 KB
Binary file not shown.

package.json

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
},
99
"private": true,
1010
"dependencies": {
11-
"@ant-design/charts": "^2.6.4",
11+
"@ant-design/charts": "^2.6.4",
1212
"@ant-design/icons": "^6.0.1",
13+
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
1314
"@babel/runtime": "^7.27.6",
1415
"@babel/runtime-corejs3": "^7.27.6",
1516
"@changey/react-leaflet-markercluster": "^4.0.0-rc1",
@@ -32,7 +33,7 @@
3233
"@tanstack/react-query": "^5.91.0",
3334
"@tinymce/miniature": "^6.0.0",
3435
"@tinymce/tinymce-react": "^6.1.0",
35-
"ajv": "^8.18.0",
36+
"ajv": "^8.0.0",
3637
"ajv-keywords": "^5.1.0",
3738
"ant-design": "^1.0.0",
3839
"antd": "^5.29.3",
@@ -54,8 +55,8 @@
5455
"date-fns": "^2.14.0",
5556
"date-fns-tz": "^2.0.1",
5657
"dayjs": "^1.11.13",
57-
"diff": "^8.0.3",
58-
"dompurify": "^3.3.2",
58+
"diff": "^5.0.0",
59+
"dompurify": "^3.2.5",
5960
"elliptic": "^6.6.1",
6061
"font-awesome": "^4.7.0",
6162
"fs-extra": "^11.3.0",
@@ -133,7 +134,8 @@
133134
"util": "^0.12.5",
134135
"uuid": "^9.0.1",
135136
"validator": "^13.15.26",
136-
"webpack": "^5.104.1"
137+
"webpack": "^5.104.1",
138+
"xlsx": "^0.18.5"
137139
},
138140
"resolutions": {
139141
"react": "18.3.1",
@@ -164,7 +166,6 @@
164166
"@babel/core": "^7.28.0",
165167
"@babel/eslint-parser": "^7.28.0",
166168
"@babel/helper-validator-identifier": "^7.12.11",
167-
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
168169
"@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1",
169170
"@babel/plugin-transform-optional-chaining": "^7.27.1",
170171
"@babel/plugin-transform-private-property-in-object": "^7.21.11",
@@ -180,13 +181,10 @@
180181
"@types/html-to-pdfmake": "^2.4.4",
181182
"@types/pdfmake": "^0.2.11",
182183
"@types/react-router-dom": "^5.3.3",
183-
"@typescript-eslint/eslint-plugin": "^8.44.1",
184-
"@typescript-eslint/parser": "^8.44.1",
185184
"@vitejs/plugin-react": "^4.5.0",
186185
"@vitest/coverage-v8": "^3.2.4",
187186
"@vitest/ui": "^3.2.4",
188187
"babel-jest": "^29.7.0",
189-
"baseline-browser-mapping": "^2.9.17",
190188
"cross-env": "^5.2.1",
191189
"eslint": "^8.57.1",
192190
"eslint-config-prettier": "^5.1.0",
@@ -198,12 +196,10 @@
198196
"eslint-plugin-react-hooks": "^4.6.2",
199197
"eslint-plugin-testing-library": "^7.11.0",
200198
"eslint-plugin-vitest": "^0.5.4",
201-
"husky": "^9.1.7",
202-
"jest-environment-jsdom": "^30.0.5",
199+
"husky": "^7.0.4",
203200
"joi-browser": "^13.4.0",
204201
"jsdom": "^26.1.0",
205202
"lint-staged": "^16.1.5",
206-
"mdn-data": "^2.26.0",
207203
"msw": "^2.10.4",
208204
"prettier": "^1.19.1",
209205
"redux-mock-store": "^1.5.4",
@@ -221,8 +217,5 @@
221217
"prettier --write"
222218
],
223219
"**/*.{css,scss,sass}": "stylelint"
224-
},
225-
"optionalDependencies": {
226-
"@rollup/rollup-darwin-arm64": "^4.54.0"
227220
}
228221
}

0 commit comments

Comments
 (0)