From a509378ff133bb5c1ab10a73d19f3d5bfb4c4461 Mon Sep 17 00:00:00 2001 From: John Darragh Date: Tue, 19 Nov 2024 16:46:02 -0800 Subject: [PATCH] Vite a (#2287) * Fix create feature bug * fix for dynamic vertical centering on mobile (#2266) * Fix some bugs (#2274) * Bump http-proxy-middleware from 2.0.6 to 2.0.7 in /client (#2264) Bumps [http-proxy-middleware](https://github.com/chimurai/http-proxy-middleware) from 2.0.6 to 2.0.7. - [Release notes](https://github.com/chimurai/http-proxy-middleware/releases) - [Changelog](https://github.com/chimurai/http-proxy-middleware/blob/v2.0.7/CHANGELOG.md) - [Commits](https://github.com/chimurai/http-proxy-middleware/compare/v2.0.6...v2.0.7) --- updated-dependencies: - dependency-name: http-proxy-middleware dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * 2262 feature flag survey and mobile survey (#2269) * fix feature refetch after add and delete * Fix user is null when use featureflag * Update userFeedbacksurvey mobile size * Undo usefeatureflag hook refech name * Update App.jsx Fixed spelling of userFeedbackSurvey * Fix refresh when add & delete --------- Co-authored-by: John Darragh * Update social links (#2279) * Trigger the fetchMapboxResults function on the leading edge of the wait interval. (#2280) * Directly install mapbox-gl NPM pkg * Bumped version number to 1.0.86 * Fix deployment issue, remove validation from social media fields (#2282) * Bumped version to 1.0.87 * Rebuild package-lock.json files * Add email and phone input validation (#2284) * display current location button on mobile (#2283) * merge vite with develop * install @types/node --------- Signed-off-by: dependabot[bot] Co-authored-by: Hannah Zulueta Co-authored-by: Whitney Gould <78887901+whitneywind@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: June Zhao <60997220+junjun107@users.noreply.github.com> Co-authored-by: Farhad Siraj <72041242+farhadsiraj@users.noreply.github.com> Co-authored-by: Jenna <92393205+JmJenna@users.noreply.github.com> --- client/package-lock.json | 17 ++++++++++++++--- client/package.json | 1 + 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/client/package-lock.json b/client/package-lock.json index 1c164026..a32fed39 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -19,6 +19,7 @@ "@mui/x-date-pickers": "^6.8.0", "@testing-library/dom": "^10.4.0", "@types/mapbox-gl": "^3.4.0", + "@types/node": "^22.9.1", "axios": "^1.7.4", "dayjs": "^1.11.7", "debounce-fn": "^5.0.0", @@ -4372,9 +4373,13 @@ } }, "node_modules/@types/node": { - "version": "18.15.0", - "dev": true, - "license": "MIT" + "version": "22.9.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.9.1.tgz", + "integrity": "sha512-p8Yy/8sw1caA8CdRIQBG5tiLHmxtQKObCijiAa9Ez+d4+PRffM4054xbju0msf+cvhJpnFEeNjxmVT/0ipktrg==", + "license": "MIT", + "dependencies": { + "undici-types": "~6.19.8" + } }, "node_modules/@types/parse-json": { "version": "4.0.0", @@ -9091,6 +9096,12 @@ "version": "1.2.0", "license": "MIT" }, + "node_modules/undici-types": { + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", + "license": "MIT" + }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.0", "dev": true, diff --git a/client/package.json b/client/package.json index 3a65c1f1..03344240 100644 --- a/client/package.json +++ b/client/package.json @@ -27,6 +27,7 @@ "@mui/x-date-pickers": "^6.8.0", "@testing-library/dom": "^10.4.0", "@types/mapbox-gl": "^3.4.0", + "@types/node": "^22.9.1", "axios": "^1.7.4", "dayjs": "^1.11.7", "debounce-fn": "^5.0.0",