From 8f20203bdbfda65cebb77b2c5df72715cd29a576 Mon Sep 17 00:00:00 2001 From: Julian Krispel Date: Wed, 25 Apr 2018 19:58:56 +0100 Subject: [PATCH] merge stuff --- draft-js-alignment-plugin/CHANGELOG.md | 3 +++ draft-js-alignment-plugin/package.json | 4 ++-- draft-js-anchor-plugin/CHANGELOG.md | 4 ++++ draft-js-drag-n-drop-plugin/CHANGELOG.md | 3 +++ draft-js-drag-n-drop-plugin/package.json | 4 ++-- draft-js-drag-n-drop-upload-plugin/CHANGELOG.md | 3 +++ draft-js-drag-n-drop-upload-plugin/package.json | 4 ++-- draft-js-emoji-plugin/CHANGELOG.md | 3 +++ draft-js-emoji-plugin/package.json | 4 ++-- draft-js-focus-plugin/CHANGELOG.md | 6 +++++- draft-js-focus-plugin/package.json | 4 ++-- draft-js-hashtag-plugin/CHANGELOG.md | 3 ++- draft-js-hashtag-plugin/package.json | 4 ++-- draft-js-image-plugin/CHANGELOG.md | 3 +++ draft-js-image-plugin/package.json | 4 ++-- draft-js-inline-toolbar-plugin/CHANGELOG.md | 4 +++- draft-js-inline-toolbar-plugin/package.json | 4 ++-- draft-js-mention-plugin/CHANGELOG.md | 3 +++ draft-js-mention-plugin/package.json | 4 ++-- draft-js-plugins-editor/CHANGELOG.md | 3 +++ draft-js-plugins-editor/package.json | 4 ++-- draft-js-resizeable-plugin/CHANGELOG.md | 3 +++ draft-js-resizeable-plugin/package.json | 4 ++-- draft-js-side-toolbar-plugin/CHANGELOG.md | 3 +++ draft-js-side-toolbar-plugin/package.json | 4 ++-- draft-js-side-toolbar-plugin/yarn.lock | 2 +- draft-js-static-toolbar-plugin/CHANGELOG.md | 3 +++ draft-js-static-toolbar-plugin/package.json | 4 ++-- draft-js-sticker-plugin/CHANGELOG.md | 3 +++ draft-js-sticker-plugin/package.json | 4 ++-- interfaces/findWithRegex.js | 3 --- package.json | 2 +- yarn.lock | 6 +++--- 33 files changed, 80 insertions(+), 39 deletions(-) delete mode 100644 interfaces/findWithRegex.js diff --git a/draft-js-alignment-plugin/CHANGELOG.md b/draft-js-alignment-plugin/CHANGELOG.md index 24ebb7ac92..6abfee6916 100644 --- a/draft-js-alignment-plugin/CHANGELOG.md +++ b/draft-js-alignment-plugin/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 2.0.3 +- bumped find-with-regex + ## 2.0.2 - added options to configure styling of alignment buttons diff --git a/draft-js-alignment-plugin/package.json b/draft-js-alignment-plugin/package.json index 76e79b124d..1d68d17725 100644 --- a/draft-js-alignment-plugin/package.json +++ b/draft-js-alignment-plugin/package.json @@ -1,6 +1,6 @@ { "name": "draft-js-alignment-plugin", - "version": "2.0.2", + "version": "2.0.3", "description": "Alignment Plugin for DraftJS", "author": { "name": "Benjamin Kniffler", @@ -32,7 +32,7 @@ "dependencies": { "decorate-component-with-props": "^1.0.2", "draft-js-buttons": "^2.0.1", - "find-with-regex": "^1.0.2", + "find-with-regex": "^1.1.2", "immutable": "~3.7.4", "prop-types": "^15.5.8", "union-class-names": "^1.0.0" diff --git a/draft-js-anchor-plugin/CHANGELOG.md b/draft-js-anchor-plugin/CHANGELOG.md index cc29e9bfbe..345323719c 100644 --- a/draft-js-anchor-plugin/CHANGELOG.md +++ b/draft-js-anchor-plugin/CHANGELOG.md @@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## 2.0.2 - extracted utilities into separate lib +- bumped find-with-regex + +## 2.0.1 +- 2.0 release ## 2.0.0-rc11 - 2017-11-07 ### Add support for mailto:username@domain syntax (to support email links) diff --git a/draft-js-drag-n-drop-plugin/CHANGELOG.md b/draft-js-drag-n-drop-plugin/CHANGELOG.md index 161e9e9b77..8ec5d14b46 100644 --- a/draft-js-drag-n-drop-plugin/CHANGELOG.md +++ b/draft-js-drag-n-drop-plugin/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 2.0.2 +- bumped find-with-regex + ## 2.0.0-rc9 - add null-check to fix bug where store is not defined when decorator is rendered. diff --git a/draft-js-drag-n-drop-plugin/package.json b/draft-js-drag-n-drop-plugin/package.json index 491589c98b..d22ce42b4e 100644 --- a/draft-js-drag-n-drop-plugin/package.json +++ b/draft-js-drag-n-drop-plugin/package.json @@ -1,6 +1,6 @@ { "name": "draft-js-drag-n-drop-plugin", - "version": "2.0.1", + "version": "2.0.2", "description": "Block Drag & Drop Plugin for DraftJS", "author": { "name": "Benjamin Kniffler", @@ -30,7 +30,7 @@ "license": "MIT", "dependencies": { "decorate-component-with-props": "^1.0.2", - "find-with-regex": "^1.0.2", + "find-with-regex": "^1.1.2", "union-class-names": "^1.0.0", "immutable": "~3.7.4", "prop-types": "^15.5.8" diff --git a/draft-js-drag-n-drop-upload-plugin/CHANGELOG.md b/draft-js-drag-n-drop-upload-plugin/CHANGELOG.md index 8d1e79caee..06d54ba83b 100644 --- a/draft-js-drag-n-drop-upload-plugin/CHANGELOG.md +++ b/draft-js-drag-n-drop-upload-plugin/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 2.0.2 +- bumped find-with-regex + ## To Be Released ### Released the first working version of DraftJS DnD Plugin diff --git a/draft-js-drag-n-drop-upload-plugin/package.json b/draft-js-drag-n-drop-upload-plugin/package.json index 1009d463e2..658bf91209 100644 --- a/draft-js-drag-n-drop-upload-plugin/package.json +++ b/draft-js-drag-n-drop-upload-plugin/package.json @@ -1,6 +1,6 @@ { "name": "draft-js-drag-n-drop-upload-plugin", - "version": "2.0.1", + "version": "2.0.2", "description": "Dropping & uploading files with DraftJS", "author": { "name": "Benjamin Kniffler", @@ -30,7 +30,7 @@ "license": "MIT", "dependencies": { "decorate-component-with-props": "^1.0.2", - "find-with-regex": "^1.0.2", + "find-with-regex": "^1.1.2", "union-class-names": "^1.0.0", "immutable": "~3.7.4", "prop-types": "^15.5.8" diff --git a/draft-js-emoji-plugin/CHANGELOG.md b/draft-js-emoji-plugin/CHANGELOG.md index d51249f937..b04d6c5bea 100644 --- a/draft-js-emoji-plugin/CHANGELOG.md +++ b/draft-js-emoji-plugin/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 2.0.4 +- bumped find-with-regex + ## 2.0.3 - Added `aria-selected="true"` for the suggestions listbox focused option. - Fix aria attributes to use booleans rather than strings (that was a draft-js update that we missed) diff --git a/draft-js-emoji-plugin/package.json b/draft-js-emoji-plugin/package.json index 82b1d6dbe5..443edda5a6 100644 --- a/draft-js-emoji-plugin/package.json +++ b/draft-js-emoji-plugin/package.json @@ -1,6 +1,6 @@ { "name": "draft-js-emoji-plugin", - "version": "2.0.3", + "version": "2.0.4", "description": "Emoji Plugin for DraftJS", "author": { "name": "Nik Graf", @@ -33,7 +33,7 @@ "dependencies": { "decorate-component-with-props": "^1.1.0", "emojione": "^2.2.7", - "find-with-regex": "^1.0.2", + "find-with-regex": "^1.1.2", "immutable": "~3.7.4", "prop-types": "^15.5.8", "lodash.keys": "^4.2.0", diff --git a/draft-js-focus-plugin/CHANGELOG.md b/draft-js-focus-plugin/CHANGELOG.md index b2e9520f53..0ef30026af 100644 --- a/draft-js-focus-plugin/CHANGELOG.md +++ b/draft-js-focus-plugin/CHANGELOG.md @@ -3,4 +3,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## 2.0.2 - fix newline linked to entity +## 2.0.3 +- bumped find-with-regex + +## 2.0.2 +- fix newline linked to entity diff --git a/draft-js-focus-plugin/package.json b/draft-js-focus-plugin/package.json index 105e48e99f..7e97e32cde 100644 --- a/draft-js-focus-plugin/package.json +++ b/draft-js-focus-plugin/package.json @@ -1,6 +1,6 @@ { "name": "draft-js-focus-plugin", - "version": "2.0.2", + "version": "2.0.3", "description": "Focus Plugin for DraftJS", "author": { "name": "Benjamin Kniffler", @@ -31,7 +31,7 @@ "license": "MIT", "dependencies": { "decorate-component-with-props": "^1.0.2", - "find-with-regex": "^1.0.2", + "find-with-regex": "^1.1.2", "union-class-names": "^1.0.0", "immutable": "~3.7.4", "prop-types": "^15.5.8" diff --git a/draft-js-hashtag-plugin/CHANGELOG.md b/draft-js-hashtag-plugin/CHANGELOG.md index 2253617fc6..0bb58bd33f 100644 --- a/draft-js-hashtag-plugin/CHANGELOG.md +++ b/draft-js-hashtag-plugin/CHANGELOG.md @@ -3,7 +3,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## To Be Released +## 2.0.2 +- bumped find-with-regex ## 1.1.0 diff --git a/draft-js-hashtag-plugin/package.json b/draft-js-hashtag-plugin/package.json index 2e86c3b255..53f11ae810 100644 --- a/draft-js-hashtag-plugin/package.json +++ b/draft-js-hashtag-plugin/package.json @@ -1,6 +1,6 @@ { "name": "draft-js-hashtag-plugin", - "version": "2.0.1", + "version": "2.0.2", "description": "Hashtag Plugin for DraftJS", "author": { "name": "Nik Graf", @@ -32,7 +32,7 @@ "license": "MIT", "dependencies": { "decorate-component-with-props": "^1.0.2", - "find-with-regex": "^1.0.2", + "find-with-regex": "^1.1.2", "union-class-names": "^1.0.0", "immutable": "~3.7.4", "prop-types": "^15.5.8" diff --git a/draft-js-image-plugin/CHANGELOG.md b/draft-js-image-plugin/CHANGELOG.md index faa4a4b1e6..e850b979cb 100644 --- a/draft-js-image-plugin/CHANGELOG.md +++ b/draft-js-image-plugin/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 2.0.3 +- bumped find-with-regex + ## 2.0.2 - don't assign blockStyleFn to img tag diff --git a/draft-js-image-plugin/package.json b/draft-js-image-plugin/package.json index ab43fcfe6a..aca34bcb2d 100644 --- a/draft-js-image-plugin/package.json +++ b/draft-js-image-plugin/package.json @@ -1,6 +1,6 @@ { "name": "draft-js-image-plugin", - "version": "2.0.2", + "version": "2.0.3", "description": "Image Plugin for DraftJS", "author": { "name": "Benjamin Kniffler", @@ -31,7 +31,7 @@ "license": "MIT", "dependencies": { "decorate-component-with-props": "^1.0.2", - "find-with-regex": "^1.0.2", + "find-with-regex": "^1.1.2", "union-class-names": "^1.0.0", "immutable": "~3.7.4", "prop-types": "^15.5.8" diff --git a/draft-js-inline-toolbar-plugin/CHANGELOG.md b/draft-js-inline-toolbar-plugin/CHANGELOG.md index 0ae207baf9..29323bcc04 100644 --- a/draft-js-inline-toolbar-plugin/CHANGELOG.md +++ b/draft-js-inline-toolbar-plugin/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## 2.0.2 +## 2.0.3 +- bumped find-with-regex +## 2.0.2 - Fixed positioning when the editor has a parent node that is positioned (i.e. `relative`, `absolute` or `fixed`). diff --git a/draft-js-inline-toolbar-plugin/package.json b/draft-js-inline-toolbar-plugin/package.json index a839299614..f8e3fcd78a 100644 --- a/draft-js-inline-toolbar-plugin/package.json +++ b/draft-js-inline-toolbar-plugin/package.json @@ -1,6 +1,6 @@ { "name": "draft-js-inline-toolbar-plugin", - "version": "2.0.2", + "version": "2.0.3", "description": "Toolbar Plugin for DraftJS", "author": { "name": "Benjamin Kniffler", @@ -32,7 +32,7 @@ "dependencies": { "decorate-component-with-props": "^1.0.2", "draft-js-buttons": "^2.0.1", - "find-with-regex": "^1.0.2", + "find-with-regex": "^1.1.2", "immutable": "~3.7.4", "prop-types": "^15.5.8", "union-class-names": "^1.0.0" diff --git a/draft-js-mention-plugin/CHANGELOG.md b/draft-js-mention-plugin/CHANGELOG.md index 0defd42515..aa86e3a015 100644 --- a/draft-js-mention-plugin/CHANGELOG.md +++ b/draft-js-mention-plugin/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 3.0.2 +- bumped find-with-regex + ## 3.0.1 - Added `aria-selected="true"` for the suggestions listbox focused option. - Update aria attributes to use booleans diff --git a/draft-js-mention-plugin/package.json b/draft-js-mention-plugin/package.json index 01f1442ab0..ca47d11236 100644 --- a/draft-js-mention-plugin/package.json +++ b/draft-js-mention-plugin/package.json @@ -1,6 +1,6 @@ { "name": "draft-js-mention-plugin", - "version": "3.0.1", + "version": "3.0.2", "description": "Mention Plugin for DraftJS", "author": { "name": "Nik Graf", @@ -32,7 +32,7 @@ "license": "MIT", "dependencies": { "decorate-component-with-props": "^1.0.2", - "find-with-regex": "^1.0.2", + "find-with-regex": "^1.1.2", "immutable": "~3.7.4", "prop-types": "^15.5.8", "lodash.escaperegexp": "^4.1.2", diff --git a/draft-js-plugins-editor/CHANGELOG.md b/draft-js-plugins-editor/CHANGELOG.md index 3f98593b01..8747496caf 100644 --- a/draft-js-plugins-editor/CHANGELOG.md +++ b/draft-js-plugins-editor/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 2.0.6 +- bumped find-with-regex + ## 2.0.5 - Fix decorator resolution in componentWillReceiveProps diff --git a/draft-js-plugins-editor/package.json b/draft-js-plugins-editor/package.json index 6474df88aa..7cb4ad1f0c 100644 --- a/draft-js-plugins-editor/package.json +++ b/draft-js-plugins-editor/package.json @@ -1,6 +1,6 @@ { "name": "draft-js-plugins-editor", - "version": "2.0.5", + "version": "2.0.6", "description": "Editor for DraftJS Plugins", "author": { "name": "Nik Graf", @@ -29,7 +29,7 @@ "license": "MIT", "dependencies": { "decorate-component-with-props": "^1.0.2", - "find-with-regex": "^1.1.0", + "find-with-regex": "^1.1.2", "immutable": "~3.7.4", "prop-types": "^15.5.8", "union-class-names": "^1.0.0" diff --git a/draft-js-resizeable-plugin/CHANGELOG.md b/draft-js-resizeable-plugin/CHANGELOG.md index 1cef07b770..9f9264fdb7 100644 --- a/draft-js-resizeable-plugin/CHANGELOG.md +++ b/draft-js-resizeable-plugin/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 2.0.5 +- bumped find-with-regex + ### 2.0.4 - fixed image resizing bugs in Firefox [#1020](https://github.com/draft-js-plugins/draft-js-plugins/issues/1020) diff --git a/draft-js-resizeable-plugin/package.json b/draft-js-resizeable-plugin/package.json index 1c79500ff0..2c4e46f399 100644 --- a/draft-js-resizeable-plugin/package.json +++ b/draft-js-resizeable-plugin/package.json @@ -1,6 +1,6 @@ { "name": "draft-js-resizeable-plugin", - "version": "2.0.4", + "version": "2.0.5", "description": "Resizeable Plugin for DraftJS", "author": { "name": "Benjamin Kniffler", @@ -30,7 +30,7 @@ "license": "MIT", "dependencies": { "decorate-component-with-props": "^1.0.2", - "find-with-regex": "^1.0.2", + "find-with-regex": "^1.1.2", "union-class-names": "^1.0.0", "immutable": "~3.7.4", "prop-types": "^15.5.8" diff --git a/draft-js-side-toolbar-plugin/CHANGELOG.md b/draft-js-side-toolbar-plugin/CHANGELOG.md index 7d871de854..1b4fe31c5a 100644 --- a/draft-js-side-toolbar-plugin/CHANGELOG.md +++ b/draft-js-side-toolbar-plugin/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 2.0.4 +- bumped find-with-regex + ### 2.0.3 - Fixed positioning when the editor has a parent node that is positioned (i.e. `relative`, `absolute` or `fixed`). diff --git a/draft-js-side-toolbar-plugin/package.json b/draft-js-side-toolbar-plugin/package.json index aea91b931e..cc38d4e26f 100644 --- a/draft-js-side-toolbar-plugin/package.json +++ b/draft-js-side-toolbar-plugin/package.json @@ -1,6 +1,6 @@ { "name": "draft-js-side-toolbar-plugin", - "version": "2.0.3", + "version": "2.0.4", "description": "Toolbar Plugin for DraftJS", "author": { "name": "Benjamin Kniffler", @@ -32,7 +32,7 @@ "dependencies": { "decorate-component-with-props": "^1.0.2", "draft-js-buttons": "^2.0.1", - "find-with-regex": "^1.0.2", + "find-with-regex": "^1.1.2", "immutable": "~3.7.4", "prop-types": "^15.5.8", "union-class-names": "^1.0.0" diff --git a/draft-js-side-toolbar-plugin/yarn.lock b/draft-js-side-toolbar-plugin/yarn.lock index e8cd878d3c..fb182f25e1 100644 --- a/draft-js-side-toolbar-plugin/yarn.lock +++ b/draft-js-side-toolbar-plugin/yarn.lock @@ -38,7 +38,7 @@ fbjs@^0.8.16: setimmediate "^1.0.5" ua-parser-js "^0.7.9" -find-with-regex@^1.0.2: +find-with-regex@^1.1.2: version "1.0.2" resolved "https://registry.yarnpkg.com/find-with-regex/-/find-with-regex-1.0.2.tgz#d3b36286539f14c527e31f194159c6d251651a45" diff --git a/draft-js-static-toolbar-plugin/CHANGELOG.md b/draft-js-static-toolbar-plugin/CHANGELOG.md index 0ca887486e..b6d7aecad8 100644 --- a/draft-js-static-toolbar-plugin/CHANGELOG.md +++ b/draft-js-static-toolbar-plugin/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 2.0.2 +- bumped find-with-regex + ## To Be Released ### Released the first working of DraftJS Toolbar Plugin diff --git a/draft-js-static-toolbar-plugin/package.json b/draft-js-static-toolbar-plugin/package.json index cf6331647d..9ac0155e03 100644 --- a/draft-js-static-toolbar-plugin/package.json +++ b/draft-js-static-toolbar-plugin/package.json @@ -1,6 +1,6 @@ { "name": "draft-js-static-toolbar-plugin", - "version": "2.0.1", + "version": "2.0.2", "description": "Static Toolbar Plugin for DraftJS", "author": { "name": "Julian Krispel", @@ -32,7 +32,7 @@ "dependencies": { "decorate-component-with-props": "^1.0.2", "draft-js-buttons": "^2.0.1", - "find-with-regex": "^1.0.2", + "find-with-regex": "^1.1.2", "immutable": "~3.7.4", "prop-types": "^15.5.8", "union-class-names": "^1.0.0" diff --git a/draft-js-sticker-plugin/CHANGELOG.md b/draft-js-sticker-plugin/CHANGELOG.md index 8d15139c58..8cac787651 100644 --- a/draft-js-sticker-plugin/CHANGELOG.md +++ b/draft-js-sticker-plugin/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 2.0.2 +- bumped find-with-regex + ## To Be Released ### Fixed diff --git a/draft-js-sticker-plugin/package.json b/draft-js-sticker-plugin/package.json index 1cd99e6eee..4b05ea5b42 100644 --- a/draft-js-sticker-plugin/package.json +++ b/draft-js-sticker-plugin/package.json @@ -1,6 +1,6 @@ { "name": "draft-js-sticker-plugin", - "version": "2.0.1", + "version": "2.0.2", "description": "Sticker Plugin for DraftJS", "author": { "name": "Nik Graf", @@ -32,7 +32,7 @@ "license": "MIT", "dependencies": { "decorate-component-with-props": "^1.0.2", - "find-with-regex": "^1.0.2", + "find-with-regex": "^1.1.2", "union-class-names": "^1.0.0", "immutable": "~3.7.4", "prop-types": "^15.5.8" diff --git a/interfaces/findWithRegex.js b/interfaces/findWithRegex.js deleted file mode 100644 index 0f575af7d7..0000000000 --- a/interfaces/findWithRegex.js +++ /dev/null @@ -1,3 +0,0 @@ -declare module 'find-with-regex' { - declare var exports: any; -} diff --git a/package.json b/package.json index 36f39adac4..334866bc6c 100644 --- a/package.json +++ b/package.json @@ -102,7 +102,7 @@ "draft-js": "^0.10.5", "emojione": "^2.2.7", "eslint-plugin-import": "^2.2.0", - "find-with-regex": "^1.0.2", + "find-with-regex": "^1.1.2", "immutable": "^3.8.1", "linkify-it": "^2.0.3", "loader-utils": "^1.0.2", diff --git a/yarn.lock b/yarn.lock index 5ced6fec2a..a7c1f4ffdf 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3410,9 +3410,9 @@ find-up@^2.0.0, find-up@^2.1.0: dependencies: locate-path "^2.0.0" -find-with-regex@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/find-with-regex/-/find-with-regex-1.0.2.tgz#d3b36286539f14c527e31f194159c6d251651a45" +find-with-regex@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/find-with-regex/-/find-with-regex-1.1.2.tgz#ce6fd971e25d73158b81849f30ccf867a580ef06" flat-cache@^1.2.1: version "1.3.0"