From 077641ad518c0dbc73092ac85f6593e65eff418f Mon Sep 17 00:00:00 2001 From: William Wong Date: Mon, 12 Sep 2022 10:35:48 -0700 Subject: [PATCH] `package.json` is inconsistent with `package-lock.json` (#4411) * Fix lockfile * Add entry --- CHANGELOG.md | 1 + lerna.json | 1 + packages/support/cldr-data/package.json | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c09aa405f..e36e34744f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Fixed - Fixes [#4403](https://github.com/microsoft/BotFramework-WebChat/issues/4403). Patched Unicode CLDR database which caused file upload in Polish to appear blank, by [@compulim](https://github.com/compulim), in PR [#4404](https://github.com/microsoft/BotFramework-WebChat/pull/4404) +- Fixes [#4412](https://github.com/microsoft/BotFramework-WebChat/issues/4412). Fixed inconsistent in `packages/support/cldr-data/package.json`, by [@compulim](https://github.com/compulim), in PR [#4411](https://github.com/microsoft/BotFramework-WebChat/pull/4411) ### Changed diff --git a/lerna.json b/lerna.json index e9123eb82b..8f60275382 100644 --- a/lerna.json +++ b/lerna.json @@ -8,6 +8,7 @@ "version": "0.0.0", "command": { "bootstrap": { + "forceLocal": true, "npmClientArgs": [ "--legacy-peer-deps" ] diff --git a/packages/support/cldr-data/package.json b/packages/support/cldr-data/package.json index 387fc413a0..78f7c46528 100644 --- a/packages/support/cldr-data/package.json +++ b/packages/support/cldr-data/package.json @@ -50,7 +50,7 @@ "skipBump": [], "dependencies": { "cldr-data-downloader": "0.3.5-0", - "glob": "^7.2.0", + "glob": "^8.0.3", "read-pkg": "^7.1.0", "read-pkg-up": "^9.1.0" }