Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.

Setup changeset

+796 -81
+8
.changeset/README.md
··· 1 + # Changesets 2 + 3 + Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works 4 + with multi-package repos, or single-package repos to help you version and publish your code. You can 5 + find the full documentation for it [in our repository](https://github.com/changesets/changesets) 6 + 7 + We have a quick list of common questions to get you started engaging with this project in 8 + [our documentation](https://github.com/changesets/changesets/blob/master/docs/common-questions.md)
+11
.changeset/config.json
··· 1 + { 2 + "$schema": "https://unpkg.com/@changesets/config@0.3.0/schema.json", 3 + "changelog": [ 4 + "@changesets/changelog-github", 5 + { "repo": "FormidableLabs/urql" } 6 + ], 7 + "commit": false, 8 + "linked": [], 9 + "access": "public", 10 + "baseBranch": "master" 11 + }
+32
CONTRIBUTING.md
··· 81 81 82 82 If you have them set up in your editor, even better! 83 83 84 + ## How do I document a change for the changelog? 85 + 86 + This project uses [changesets](https://github.com/atlassian/changesets). This means that for 87 + every PR there must be documentation for what has been changed and which package is affected. 88 + 89 + You can document a change by running `yarn changeset`, which will ask you which packages 90 + have changed and whether the change is major/minor/patch. It will then ask you to write 91 + a change entry as markdown. 92 + 93 + This will eventually end up in the package's `CHANGELOG.md` file when we do a release. 94 + 95 + [Read more about adding a `changeset` here.](https://github.com/atlassian/changesets/blob/master/docs/adding-a-changeset.md#i-am-in-a-multi-package-repository-a-mono-repo) 96 + 84 97 ## How do I upgrade all dependencies? 85 98 86 99 It may be a good idea to keep all dependencies on the `urql` repository up-to-date every now and ··· 134 147 yarn 135 148 yarn run check 136 149 ``` 150 + 151 + ## How do I release new versions of our packages? 152 + 153 + The process of releasing versions is automated using `changeset`. This moves a lot of 154 + the work of writing CHANGELOG entries away from our release process and to our PR 155 + review process. During the release the created `changeset` entries are automatically 156 + applied and our `CHANGELOG`s are updated. 157 + 158 + First check what changes you're about to release with `yarn changeset status`. 159 + 160 + Then the process is similar to using `yarn version` and `yarn publish`: 161 + 162 + ```sh 163 + # This will automatically bump versions as necessary and update CHANGELOG files: 164 + yarn changeset version 165 + # Please check all versions and CHANGELOGs manually. 166 + # Then publish all new packages / versions: 167 + yarn changeset publish 168 + ```
+24 -32
exchanges/graphcache/CHANGELOG.md
··· 1 - # Changelog 2 - 3 - All notable changes to this project will be documented in this file. 4 - If a change is missing an attribution, it may have been made by a Core Contributor. 5 - 6 - - Critical bugfixes or breaking changes are marked using a `warning` symbol: ⚠️ 7 - - Significant new features or enhancements are marked using the `sparkles` symbol: ✨ 8 - 9 - _The format is based on [Keep a Changelog](http://keepachangelog.com/)._ 1 + # @urql/exchange-graphcache 10 2 11 - ## [v2.1.0](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v2.0.0...v2.0.1) 3 + ## 2.1.0 12 4 13 5 This release adds support for cache persistence which is bringing us one step closer to 14 6 full offline-support, which we hope to bring you soon. ··· 25 17 - Fix duplicate fragments in `populateExchange` output (see [#151](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/151)) 26 18 - Allow `wonka@^3.2.1||^4.0.0` to be used (see [#153](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/153)) 27 19 28 - ## [v2.0.0](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.2.2...v2.0.0) 20 + ## 2.0.0 29 21 30 22 > **Note:** The minimum required version of `urql` for this release is now `1.7.0`! 31 23 ··· 57 49 - Use Closure Compiler (see [#131](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/131)) 58 50 - Switch to using `urql/core` on `1.7.0` (see [#132](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/132)) 59 51 60 - ## [v1.2.2](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.2.1...v1.2.2) 52 + ## 1.2.2 61 53 62 54 This patch replaces `pessimism` (our former underlying data structure) with a smaller implementation 63 55 that just uses `Map`s, since we weren't relying on any immutability internally. This cuts down ··· 65 57 66 58 - Replace Pessimism with mutable store to prevent excessive GC work (see [#117](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/117)) 67 59 68 - ## [v1.2.1](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.2.0...v1.2.1) 60 + ## 1.2.1 69 61 70 62 - Fix viewer fields (which return `Query` types) not being written or read correctly (see [#116](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/116)) 71 63 72 - ## [v1.2.0](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.1.2...v1.2.0) 64 + ## 1.2.0 73 65 74 66 - ⚠️ Fix unions not being checked supported by schema predicates, by [@StevenLangbroek](https://github.com/StevenLangbroek) (see [#113](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/113)) 75 67 - ✨ Add `simplePagination` helper for resolving simple, paginated lists (see [#115](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/115)) 76 68 77 - ## [v1.1.2](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.1.1...v1.1.2) 69 + ## 1.1.2 78 70 79 71 - Fix `relayPagination` helper causing cache-misses for empty lists, by [@rafeca](https://github.com/rafeca) (see [#111](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/111)) 80 72 81 - ## [v1.1.1](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.3...v1.1.1) 73 + ## 1.1.1 82 74 83 75 This is a minor release since it increases the peer dependency of `urql` to `>= 1.6.0`, due to the addition 84 76 of the `stale` flag to partial responses and `cache-and-network` responses. This flag is useful to check ··· 91 83 - Add a query/fragment stack to all errors and warnings (see [#107](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/107)) 92 84 - Add `stale: true` to all `cache-and-network` and partial responses (see [#108](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/108)) 93 85 94 - ## [v1.0.3](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.2...v1.0.3) 86 + ## 1.0.3 95 87 96 88 - Fix `relayPagination` helper merging pages with different field arguments (see [#104](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/104)) 97 89 98 - ## [v1.0.2](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.1...v1.0.2) 90 + ## 1.0.2 99 91 100 92 - Deduplicate connections in `Store.writeConnection` when possible (see [#103](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/103)) 101 93 - Fix early bail-out in `relayPagination` helper (see [#103](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/103)) 102 94 103 - ## [v1.0.1](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.0...v1.0.1) 95 + ## 1.0.1 104 96 105 97 - Trims down the size by 100 bytes (see [#96](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/96)) 106 98 - Include the `/extras` build in the published version (see [#97](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/97)) ··· 109 101 - Fixes the relayPagination helper to correctly return partial results (see [#101](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/101)) 110 102 - Add special case to relayPagination for first and last during inwards merge (see [#102](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/102)) 111 103 112 - ## [v1.0.0](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.0-rc.11...v1.0.0) 104 + ## 1.0.0 113 105 114 106 > **Note:** The minimum required version of `urql` for this release is now `1.5.1`! 115 107 ··· 130 122 - Add a `Cache` interface with all methods (that are safe for userland) having documentation (see [#91](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/91)) 131 123 - ⚠ Fix non-default root keys (that aren't just `Query`) not being respected (see [#87](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/87)) 132 124 133 - ## [v1.0.0-rc.11](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.0-rc.10...v1.0.0-rc.11) 125 + ## 1.0.0-rc.11 134 126 135 127 - Fix `updates` not being called for `optimistic` results (see [#83](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/83)) 136 128 - Add optional `variables` argument to `readFragment` and `writeFragment` (see [#84](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/84)) 137 129 - ⚠ Fix field arguments not normalising optional `null` values (see [#85](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/85)) 138 130 139 - ## [v1.0.0-rc.10](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.0-rc.9...v1.0.0-rc.10) 131 + ## 1.0.0-rc.10 140 132 141 133 - ⚠ Fix removing cache entries by upgrading to Pessimism `1.1.4` (see [ae72d3](https://github.com/FormidableLabs/urql-exchange-graphcache/commit/ae72d3b1c8b3e5965e122d5509eb561f68579474)) 142 134 143 - ## [v1.0.0-rc.9](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.0-rc.8...v1.0.0-rc.9) 135 + ## 1.0.0-rc.9 144 136 145 137 - ⚠ Fix optimistic updates by upgrading to Pessimism `1.1.3` (see [#81](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/81)) 146 138 147 - ## [v1.0.0-rc.8](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.0-rc.7...v1.0.0-rc.8) 139 + ## 1.0.0-rc.8 148 140 149 141 - Fix warnings being shown for Relay `Connection` and `Edge` embedded types (see [#79](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/79)) 150 142 - Implement `readFragment` method on `Store` (see [#73](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/73)) 151 143 - Implement `readQuery` method on `Store` (see [#73](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/73)) 152 144 - Improve `writeFragment` method on `Store` (see [#73](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/73)) 153 145 154 - ## [v1.0.0-rc.7](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.0-rc.6...v1.0.0-rc.7) 146 + ## 1.0.0-rc.7 155 147 156 148 - ⚠ Fix reexecuted operations due to dependencies not using `cache-first` (see [0bd58f6](https://github.com/FormidableLabs/urql-exchange-graphcache/commit/0bd58f6)) 157 149 158 - ## [v1.0.0-rc.6](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.0-rc.5...v1.0.0-rc.6) 150 + ## 1.0.0-rc.6 159 151 160 152 - ⚠ Fix concurrency issue where a single operation is reexecuted multiple times (see [#70](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/70)) 161 153 - Skip writing `undefined` to the cache and log a warning in development (see [#71](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/71)) 162 154 - Allow `query` to be passed as a string to `store.updateQuery` (see [#72](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/72)) 163 155 164 - ## [v1.0.0-rc.5](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.0-rc.4...v1.0.0-rc.5) 156 + ## 1.0.0-rc.5 165 157 166 158 - ⚠ Fix user-provided `keys` config not being able to return `null` (see [#68](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/68)) 167 159 168 - ## [v1.0.0-rc.4](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.0-rc.3...v1.0.0-rc.4) 160 + ## 1.0.0-rc.4 169 161 170 162 - ⚠ Fix development warnings throwing an error for root fields (see [#65](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/65)) 171 163 172 - ## [v1.0.0-rc.3](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.0-rc.2...v1.0.0-rc.3) 164 + ## 1.0.0-rc.3 173 165 174 166 _Note: This is release contains a bug that `v1.0.0-rc.4` fixes_ 175 167 176 168 - Fix warning condition for missing entity keys (see [98287ae](https://github.com/FormidableLabs/urql-exchange-graphcache/commit/98287ae)) 177 169 178 - ## [v1.0.0-rc.2](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.0-rc.1...v1.0.0-rc.2) 170 + ## 1.0.0-rc.2 179 171 180 172 _Note: This is release contains a bug that `v1.0.0-rc.3` fixes_ 181 173 182 174 - Add warnings for unknown fields based on the schema and deduplicate warnings (see [#63](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/63)) 183 175 184 - ## [v1.0.0-rc.1](https://github.com/FormidableLabs/urql-exchange-graphcache/compare/v1.0.0-rc.0...v1.0.0-rc.1) 176 + ## 1.0.0-rc.1 185 177 186 178 This is the first release that adds _schema awareness_. Passing a schema to Graphcache allows it to make deterministic 187 179 assumptions about the cached results it generates from its data. It can deterministically match fragments to interfaces, ··· 192 184 - ✨ Allow for partial results to cascade missing values upwards (see [#59](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/59)) 193 185 - Fix `store.keyOfEntity` not using root names from the schema (see [#62](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/62)) 194 186 195 - ## v1.0.0-rc.0 187 + ## 1.0.0-rc.0 196 188 197 189 This is where this CHANGELOG starts. 198 190 For a log on what happened in `beta` and `alpha` releases, please read the commit history.
+2
package.json
··· 41 41 "@babel/core": "^7.7.7", 42 42 "@babel/plugin-transform-object-assign": "^7.8.3", 43 43 "@babel/plugin-transform-react-jsx": "^7.8.3", 44 + "@changesets/changelog-github": "^0.2.1", 45 + "@changesets/cli": "^2.5.1", 44 46 "@rollup/plugin-buble": "^0.21.0", 45 47 "@rollup/plugin-commonjs": "^11.0.1", 46 48 "@rollup/plugin-node-resolve": "^7.0.0",
+1
packages/core/CHANGELOG.md
··· 1 + # @urql/core
+4 -2
packages/preact-urql/CHANGELOG.md
··· 1 - # 1.1.0 1 + # @urql/preact 2 + 3 + ## 1.1.0 2 4 3 5 - Update urql to 1.8.0 4 6 - Update wonka to 4.0.0 (and incorporate breaking changes) 5 7 6 - # 1.0.0 8 + ## 1.0.0 7 9 8 10 Releaased!
+25 -33
packages/react-urql/CHANGELOG.md
··· 1 - # Changelog 2 - 3 - All notable changes to this project will be documented in this file. 4 - If a change is missing an attribution, it may have been made by a Core Contributor. 1 + # urql 5 2 6 - - Critical bugfixes or breaking changes are marked using a `warning` symbol: ⚠️ 7 - - Significant new features or enhancements are marked using the `sparkles` symbol: ✨ 8 - 9 - _The format is based on [Keep a Changelog](http://keepachangelog.com/)._ 10 - 11 - ## [v1.8.2](https://github.com/FormidableLabs/urql/compare/v1.8.1...v1.8.2) 3 + ## 1.8.2 12 4 13 5 This patch fixes client-side suspense. While we wouldn't recommend its use 14 6 anymore, since suspense lends itself to prerendering instead of a loading ··· 21 13 - Clean up unnecessary `useMemo` for `useCallback` in hooks (see [#504](https://github.com/FormidableLabs/urql/pull/504)) 22 14 - Fix synchronous, client-side suspense and simplify `toSuspenseSource` helper (see [#506](https://github.com/FormidableLabs/urql/pull/506)) 23 15 24 - ## [v1.8.1](https://github.com/FormidableLabs/urql/compare/v1.8.0...v1.8.1) 16 + ## 1.8.1 25 17 26 18 This patch fixes `urql` relying on a quirk in older versions of `wonka` where 27 19 shared sources wouldn't cascade cancellations, which they now do. This meant ··· 30 22 31 23 - Fix exchange pipeline stalling when all queries end (see [#503](https://github.com/FormidableLabs/urql/pull/503)) 32 24 33 - ## [v1.8.0](https://github.com/FormidableLabs/urql/compare/v1.7.0...v1.8.0) 25 + ## 1.8.0 34 26 35 27 This release doesn't change any major feature aspects, but comes with bugfixes 36 28 to our suspense and concurrent-mode handling. Due to an upgrade to `wonka@^4.0.0` 37 29 this is a minor version though. 38 30 39 - In [v1.6.0](https://github.com/FormidableLabs/urql/blob/master/CHANGELOG.md#v160) we believed to 31 + In [v1.6.0](https://github.com/FormidableLabs/urql/blob/master/CHANGELOG.md#160) we believed to 40 32 have solved all issues related to suspense and concurrent mode. However there were 41 33 still some remaining cases where concurrent mode behaved incorrectly. With the new 42 34 `useOperator` hook in [`react-wonka@2.0.0`](https://github.com/kitten/react-wonka) we believe ··· 55 47 - Support concurrent mode with all edge cases fully (see [#496](https://github.com/FormidableLabs/urql/pull/496)) 56 48 - Move to `react-wonka@2.0.0` with the prior fix in #496 (see [#499](https://github.com/FormidableLabs/urql/pull/499)) 57 49 58 - ## [v1.7.0](https://github.com/FormidableLabs/urql/compare/v1.6.3...v1.7.0) 50 + ## 1.7.0 59 51 60 52 This release splits our main package into two entrypoints. Importing from `urql` remains 61 53 unchanged, but internally this entrypoint uses `urql/core`, which doesn't contain any ··· 66 58 - Fix `stringifyVariables` not using `.toJSON()` which prevented Dates from being stringified, by [@BjoernRave](https://github.com/BjoernRave) (see [#485](https://github.com/FormidableLabs/urql/pull/485)) 67 59 - Expose `urql/core` without any React code included (see [#424](https://github.com/FormidableLabs/urql/pull/424)) 68 60 69 - ## [v1.6.3](https://github.com/FormidableLabs/urql/compare/v1.6.2...v1.6.3) 61 + ## 1.6.3 70 62 71 63 - Fix suspense-mode being erroneously activated when using `client.query()` (see [#466](https://github.com/FormidableLabs/react-ssr-prepass/pull/21)) 72 64 73 - ## [v1.6.2](https://github.com/FormidableLabs/urql/compare/v1.6.1...v1.6.2) 65 + ## 1.6.2 74 66 75 67 This fixes a potentially critical bug, where a component would enter an infinite rerender loop, 76 68 when another hook triggers an update. This may happen when multiple `useQuery` hooks are used in ··· 79 71 - Add generic type-parameter to `client.query` and `client.mutation`, by [@ctrlplusb](https://github.com/ctrlplusb) (see [#456](https://github.com/FormidableLabs/urql/pull/456)) 80 72 - ⚠️ Fix `useQuery` entering an infinite loop during SSR when an update is triggered (see [#459](https://github.com/FormidableLabs/urql/pull/459)) 81 73 82 - ## [v1.6.1](https://github.com/FormidableLabs/urql/compare/v1.6.0...v1.6.1) 74 + ## 1.6.1 83 75 84 76 - Fix hook updates not being propagated to potential context providers (see [#451](https://github.com/FormidableLabs/urql/pull/451)) 85 77 86 - ## [v1.6.0](https://github.com/FormidableLabs/urql/compare/v1.5.1...v1.6.0) 78 + ## 1.6.0 87 79 88 80 This release comes with stability improvements for the `useQuery` and `useSubscription` hooks 89 81 when using suspense and concurrent mode. They should behave the same as before under normal ··· 102 94 - Replace `useImmeditateEffect` and `useImmediateState` with `react-wonka` derived state and effect (see [#447](https://github.com/FormidableLabs/urql/pull/447)) 103 95 - Add (internal) `suspense` flag to `OperationContext` 104 96 105 - ## [v1.5.1](https://github.com/FormidableLabs/urql/compare/v1.5.0...v1.5.1) 97 + ## 1.5.1 106 98 107 99 - Replace `fast-json-stable-stringify` with embedded code (see [#426](https://github.com/FormidableLabs/urql/pull/426)) 108 100 - ⚠ Prevent caching `null` data (see [#437](https://github.com/FormidableLabs/urql/pull/437)) 109 101 110 - ## [v1.5.0](https://github.com/FormidableLabs/urql/compare/v1.4.1...v1.5.0) 102 + ## 1.5.0 111 103 112 104 This release finally adds shortcuts to imperatively make queries and mutations. 113 105 They make it easier to quickly use the client programmatically, either with ··· 131 123 - Deconstruct `Wonka.pipe` using a Babel transform (see [#419](https://github.com/FormidableLabs/urql/pull/419)) 132 124 - ⚠ Add `useClient` hook and warning when default client is used (see [#420](https://github.com/FormidableLabs/urql/pull/420)) 133 125 134 - ## [v1.4.1](https://github.com/FormidableLabs/urql/compare/v1.4.0...v1.4.1) 126 + ## 1.4.1 135 127 136 128 This release adds "active teardowns" for operations, which means that an exchange can now send a teardown to cancel ongoing operations. The `subscriptionsExchange` for instance now ends ongoing subscriptions proactively if the server says that they've completed! This is also reflected as `fetching: false` in the `useQuery` and `useSubscription` hook. 137 129 ··· 141 133 - Fix `UseMutationResponse` TypeScript type, by [@jbugman](https://github.com/jbugman) (see [#412](https://github.com/FormidableLabs/urql/pull/412)) 142 134 - Exclude subscriptions from suspense source (see [#415](https://github.com/FormidableLabs/urql/pull/415)) 143 135 144 - ## [v1.4.0](https://github.com/FormidableLabs/urql/compare/v1.3.0...v1.4.0) 136 + ## 1.4.0 145 137 146 138 This release removes all metadata for the `@urql/devtools` extension from the core 147 139 `urql` package. This data will now be generated internally in the devtools exchange ··· 163 155 - ⚠ Prevent `__typename` from being added to the toplevel GraphQL documents (see [#399](https://github.com/FormidableLabs/urql/pull/399)) 164 156 - Add `operationName` field to `fetch` request body (see [#401](https://github.com/FormidableLabs/urql/pull/401)) 165 157 166 - ## [v1.3.0](https://github.com/FormidableLabs/urql/compare/v1.2.0...v1.3.0) 158 + ## 1.3.0 167 159 168 160 This release comes with some important fixes and enhancements, which all address 169 161 certain edge-cases when using `urql`. ··· 177 169 - ✨ Add `context` option to all hooks to allow `OperationContext` to be changed dynamically (see [#351](https://github.com/FormidableLabs/urql/pull/351)) 178 170 - Add `isClient` option to `ssrExchange` in case `suspense` is activated on the client-side (see [#369](https://github.com/FormidableLabs/urql/pull/369)) 179 171 180 - ## [v1.2.0](https://github.com/FormidableLabs/urql/compare/v1.1.3...v1.2.0) 172 + ## 1.2.0 181 173 182 174 A release focused on improving developer experience (in preparation for the 183 175 upcoming devtools) as well as minor documentation improvements and bug fixes. ··· 189 181 - Fix error in `collectTypes` method (see [#343](https://github.com/FormidableLabs/urql/pull/343)) 190 182 - Fix HTTP status bounds check error (see [#348](https://github.com/FormidableLabs/urql/pull/348/files)) 191 183 192 - ## [v1.1.3](https://github.com/FormidableLabs/urql/compare/v1.1.2...v1.1.3) 184 + ## 1.1.3 193 185 194 186 This is a hotfix that patches a small regression from `1.1.2` where 195 187 `useQuery` would crash due to an incorrect teardown function from pause. 196 188 197 189 - Fix `executeQuery` dispose function when `pause` is set, by[@JoviDeCroock](https://github.com/JoviDeCroock) (see [#315](https://github.com/FormidableLabs/urql/pull/315)) 198 190 199 - ## [v1.1.2](https://github.com/FormidableLabs/urql/compare/v1.1.1...v1.1.2) 191 + ## 1.1.2 200 192 201 193 This patch fixes a small bug that usually manifests in development, 202 194 where the initial state would be incorrect after a fast response from ··· 208 200 - Refactor build tooling to be driven only by Rollup (see [#306](https://github.com/FormidableLabs/urql/pull/306)) 209 201 - Remove dev-only dependencies from `dependencies` (see [#304](https://github.com/FormidableLabs/urql/pull/304)) 210 202 211 - ## [v1.1.1](https://github.com/FormidableLabs/urql/compare/v1.1.0...v1.1.1) 203 + ## 1.1.1 212 204 213 205 This release comes with two small patches. One being a crticial fix, 214 206 where cancelled requests would be erroneously deduped, which meant ··· 221 213 - Fix `useQuery`'s `pause` argument blocking explicit `executeQuery` calls (see [#278](https://github.com/FormidableLabs/urql/pull/278)) 222 214 - Add `Object.assign` transpilation for IE11 and refactor bundling (see [#274](https://github.com/FormidableLabs/urql/pull/274)) 223 215 224 - ## [v1.1.0](https://github.com/FormidableLabs/urql/compare/v1.0.5...v1.1.0) 216 + ## 1.1.0 225 217 226 218 This release introduces support for **server-side rendering**. 227 219 You can find out more about it by reading ··· 238 230 - ⚠️ Fix issues where `useQuery` wouldn't update or teardown correctly (see [#243](https://github.com/FormidableLabs/urql/pull/243)) 239 231 - ✨ Add support for `pause` prop/option to `useQuery` and `Query` (see [#237](https://github.com/FormidableLabs/urql/pull/237)) 240 232 241 - ## [v1.0.5](https://github.com/FormidableLabs/urql/compare/v1.0.4...v1.0.5) 233 + ## 1.0.5 242 234 243 235 - Export `MutationProps` types for TS typings, by [@mxstbr](https://github.com/mxstbr) (see [#236](https://github.com/FormidableLabs/urql/pull/236)) 244 236 - Export `Use*Args` types for TS typings, by [@mxstbr](https://github.com/mxstbr) (see [#235](https://github.com/FormidableLabs/urql/pull/235)) ··· 248 240 - Change `GraphQLRequest` to always pass on a parsed GraphQL `DocumentNode` instead of just a string, which reduces work (see [#221](https://github.com/FormidableLabs/urql/pull/221)) 249 241 - Fix incorrect TS types by using `Omit<T, K>` (see [#220](https://github.com/FormidableLabs/urql/pull/220)) 250 242 251 - ## [v1.0.4](https://github.com/FormidableLabs/urql/compare/v1.0.3...v1.0.4) 243 + ## 1.0.4 252 244 253 245 - Fix `__typename` not being extracted from responses correctly, which broke caching 254 246 - Fix `fetchOptions` being called in the client instead of the `fetchExchange` 255 247 - Improve `CombinedError` to actually extend `Error` and rehydrate `GraphQLError` instances 256 248 - Fix `executeMutation` prop not accepting any generics types 257 249 258 - ## [v1.0.3](https://github.com/FormidableLabs/urql/compare/v1.0.2...v1.0.3) 250 + ## 1.0.3 259 251 260 252 - Fix bug where `variables` were only compared using reference equality, leading to 261 253 infinite rerenders 262 254 263 - ## [v1.0.2](https://github.com/FormidableLabs/urql/compare/v1.0.0...v1.0.2) 255 + ## 1.0.2 264 256 265 257 - Allow `graphql-tag` / `DocumentNode` usage; Operations' queries can now be `DocumentNode`s 266 258 - Generating keys for queries has been optimized 267 259 268 260 https://github.com/FormidableLabs/urql/compare/v1.0.4...v1.0.5 269 261 270 - ## v1.0.0 262 + ## 1.0.0 271 263 272 264 > Since the entire library has been rewritten for v1.0.0, no changes 273 265 > are listed here!
+1
packages/svelte-urql/CHANGELOG.md
··· 1 + # @urql/svelte
+688 -14
yarn.lock
··· 164 164 "@babel/helper-plugin-utils" "^7.8.3" 165 165 "@babel/plugin-syntax-jsx" "^7.8.3" 166 166 167 - "@babel/runtime@^7.5.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.6": 167 + "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.6": 168 168 version "7.8.4" 169 169 resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.8.4.tgz#d79f5a2040f7caa24d53e563aad49cbc05581308" 170 170 integrity sha512-neAp3zt80trRVBI1x0azq6c57aNBqYZH8KhMm3TaB7wEI5Q4A2SHfBHE8w9gOhI/lrqxtEbXZgQIrHP+wvSGwQ== ··· 209 209 resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 210 210 integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 211 211 212 + "@changesets/apply-release-plan@^0.4.1": 213 + version "0.4.1" 214 + resolved "https://registry.yarnpkg.com/@changesets/apply-release-plan/-/apply-release-plan-0.4.1.tgz#3e284772fa3f72a9f623ba320017f8c0e20c239b" 215 + integrity sha512-zgCG/Iq969nRii4QXfofPLIN3Errom0kFtsR9aJAiJi/xlXKqusmVAky7VqQpo+S54cuVuOAnFJoNNGTUhlJ4Q== 216 + dependencies: 217 + "@babel/runtime" "^7.4.4" 218 + "@changesets/config" "^0.3.0" 219 + "@changesets/get-version-range-type" "^0.2.0" 220 + "@changesets/git" "^0.4.0" 221 + "@changesets/types" "^0.4.0" 222 + fs-extra "^7.0.1" 223 + get-workspaces "^0.6.0" 224 + lodash.startcase "^4.4.0" 225 + outdent "^0.5.0" 226 + prettier "^1.18.2" 227 + resolve-from "^5.0.0" 228 + semver "^5.4.1" 229 + 230 + "@changesets/assemble-release-plan@^0.3.0", "@changesets/assemble-release-plan@^0.3.1": 231 + version "0.3.1" 232 + resolved "https://registry.yarnpkg.com/@changesets/assemble-release-plan/-/assemble-release-plan-0.3.1.tgz#e1694f5049e849a9a6190d2f518bc73288c98a23" 233 + integrity sha512-qlfzf1akpptamc1DtBdX6KnG6XTMI5dnBd51psmqLGokZGv9R684d4JncRmNrD2w+THp1UQsA8sfgs9+T18OzQ== 234 + dependencies: 235 + "@babel/runtime" "^7.4.4" 236 + "@changesets/errors" "^0.1.2" 237 + "@changesets/types" "^0.4.0" 238 + semver "^5.4.1" 239 + 240 + "@changesets/changelog-github@^0.2.1": 241 + version "0.2.1" 242 + resolved "https://registry.yarnpkg.com/@changesets/changelog-github/-/changelog-github-0.2.1.tgz#59b723958c6293618de278f48ed15af740d9ed2a" 243 + integrity sha512-9rtct8gcbORJH7fmNhSOCgOyETk8JEoXFIC8PnFrdpQPuweknOORMKrsItfUnuYqRuSf0P13P1HCXgZFqBCPmg== 244 + dependencies: 245 + "@changesets/get-github-info" "^0.4.1" 246 + "@changesets/types" "^0.4.0" 247 + dotenv "^8.1.0" 248 + 249 + "@changesets/cli@^2.5.1": 250 + version "2.5.1" 251 + resolved "https://registry.yarnpkg.com/@changesets/cli/-/cli-2.5.1.tgz#06e90296039879617cf9d1084ac7123ddfce7871" 252 + integrity sha512-Q76japTcdBxH05ixnJtSiqW7ttW73gjWSorw3UtzAN6TNIm3Ts3p8VvbEkj5AQPpE4I6rAJWKUYX3VUJH4KGOw== 253 + dependencies: 254 + "@babel/runtime" "^7.4.4" 255 + "@changesets/apply-release-plan" "^0.4.1" 256 + "@changesets/assemble-release-plan" "^0.3.1" 257 + "@changesets/config" "^0.3.0" 258 + "@changesets/errors" "^0.1.2" 259 + "@changesets/get-release-plan" "^0.4.0" 260 + "@changesets/git" "^0.4.0" 261 + "@changesets/logger" "^0.0.3" 262 + "@changesets/pre" "^0.2.0" 263 + "@changesets/read" "^0.4.1" 264 + "@changesets/types" "^0.4.0" 265 + "@types/semver" "^6.0.0" 266 + boxen "^1.3.0" 267 + chalk "^2.1.0" 268 + enquirer "^2.3.0" 269 + fs-extra "^7.0.1" 270 + get-dependents-graph "^0.2.0" 271 + get-workspaces "^0.6.0" 272 + human-id "^1.0.2" 273 + is-ci "^2.0.0" 274 + meow "^5.0.0" 275 + outdent "^0.5.0" 276 + p-limit "^2.2.0" 277 + prettier "^1.18.2" 278 + semver "^5.4.1" 279 + spawndamnit "^2.0.0" 280 + term-size "^2.1.0" 281 + tty-table "^2.7.0" 282 + 283 + "@changesets/config@^0.3.0": 284 + version "0.3.0" 285 + resolved "https://registry.yarnpkg.com/@changesets/config/-/config-0.3.0.tgz#8b1dc7fa70aaa7a794fb63f5b30281c44ee3d1a8" 286 + integrity sha512-stkQp/h1e3irzT4lD/Tdvj5co3c6T891AeP/UBcb3B+N7ZnwLlAb91dQGMA2GI+JE3j8TwPXwdeK7i5eHt88bQ== 287 + dependencies: 288 + "@changesets/errors" "^0.1.2" 289 + "@changesets/logger" "^0.0.3" 290 + "@changesets/types" "^0.4.0" 291 + fs-extra "^7.0.1" 292 + 293 + "@changesets/errors@^0.1.2": 294 + version "0.1.2" 295 + resolved "https://registry.yarnpkg.com/@changesets/errors/-/errors-0.1.2.tgz#5c13c7b4ce69c7ded8c52d6c6b5d622d8ecca7d8" 296 + integrity sha512-9pfp6Kq+h/CXWpgEM4Y2XtxeNCopUDov6NpDIFISHI5Ipg2Jz7cweULleASWVKVi9FwjCqQwIhmREdhgSOozcQ== 297 + dependencies: 298 + extendable-error "^0.1.5" 299 + 300 + "@changesets/get-github-info@^0.4.1": 301 + version "0.4.1" 302 + resolved "https://registry.yarnpkg.com/@changesets/get-github-info/-/get-github-info-0.4.1.tgz#359562fb9ad1ba38b90f8d097337c8e36372d96c" 303 + integrity sha512-UtBaB7rS2mvEvvsJCpNsR86wLd5dPaupXBCHDdcYY1kDATpLBrvCNj+Qq8HVDQeaYb4BnTOVl7sGjtnzGEMaxQ== 304 + dependencies: 305 + dataloader "^1.4.0" 306 + node-fetch "^2.5.0" 307 + 308 + "@changesets/get-release-plan@^0.4.0": 309 + version "0.4.0" 310 + resolved "https://registry.yarnpkg.com/@changesets/get-release-plan/-/get-release-plan-0.4.0.tgz#77cb074c4385ccc10b034bc10c2f03f533ce2e86" 311 + integrity sha512-Crw4MlJCMSZRTYFGCmCQZmKadDKNj1HTe5qC4wTJ372W8cpla5rC/48kuk5S9Ufr94dRpLNZZJLLoSeYdDzXhg== 312 + dependencies: 313 + "@babel/runtime" "^7.4.4" 314 + "@changesets/assemble-release-plan" "^0.3.0" 315 + "@changesets/config" "^0.3.0" 316 + "@changesets/pre" "^0.2.0" 317 + "@changesets/read" "^0.4.1" 318 + "@changesets/types" "^0.4.0" 319 + get-dependents-graph "^0.2.0" 320 + get-workspaces "^0.6.0" 321 + 322 + "@changesets/get-version-range-type@^0.2.0": 323 + version "0.2.0" 324 + resolved "https://registry.yarnpkg.com/@changesets/get-version-range-type/-/get-version-range-type-0.2.0.tgz#1b647e87c7d1f0fd3d75cc9957f7610f699a7deb" 325 + integrity sha512-myE/FG1AqmvacjsvOt4UBzVl9KdKXGD6isCP14Q+GY94Ky1zp9n9YByuf6BiIq7/6gAM/2kC9kQvKG9I/AS9Yw== 326 + 327 + "@changesets/git@^0.4.0": 328 + version "0.4.0" 329 + resolved "https://registry.yarnpkg.com/@changesets/git/-/git-0.4.0.tgz#3235ae51c61be094f17aa9e07435121bddbb86f5" 330 + integrity sha512-t2GM/DQ2aRCFA4A2rwfP61fEWIGz8p6WaJydOyliA0kxkOmBwxicSdCrM1vSfvEHnAF4CZ+MQVeaqLed0jYWSw== 331 + dependencies: 332 + "@babel/runtime" "^7.4.4" 333 + "@changesets/errors" "^0.1.2" 334 + "@changesets/types" "^0.4.0" 335 + get-workspaces "^0.6.0" 336 + spawndamnit "^2.0.0" 337 + 338 + "@changesets/logger@^0.0.3": 339 + version "0.0.3" 340 + resolved "https://registry.yarnpkg.com/@changesets/logger/-/logger-0.0.3.tgz#c39c337210076e7019377c332b9026c8450924ac" 341 + integrity sha512-qJKqHwyyckHRTsfH0MjSCcI/ZFylaUotGgl0zkJ9xdnzXNXqQrrmL2/d1zDUYuzYFCN0ldK1ybYmIaxpyCGEdg== 342 + dependencies: 343 + chalk "^2.1.0" 344 + 345 + "@changesets/parse@^0.3.1": 346 + version "0.3.1" 347 + resolved "https://registry.yarnpkg.com/@changesets/parse/-/parse-0.3.1.tgz#0079b2d1ff30b37437aa487d0e1e0d2da3c7f35a" 348 + integrity sha512-ro45JCMk+yPEbZaQOlMuVcBDAeNzoIk0BYKEcV3tIQQo4T0BFgHdsua1TII+aB24RWEuSsL8W+bwqJC5InJajw== 349 + dependencies: 350 + "@changesets/types" "^0.4.0" 351 + js-yaml "^3.13.1" 352 + 353 + "@changesets/pre@^0.2.0": 354 + version "0.2.0" 355 + resolved "https://registry.yarnpkg.com/@changesets/pre/-/pre-0.2.0.tgz#e92d477296e83bb7810e96e1f694017319495284" 356 + integrity sha512-h6aEspG/PeciBrlwnR+laYPom2DMYH5hE9Un14EtUB8AXDa3HqtzwE0AIMXklyxLLXFCycpM5yAiJQP7Z9H1rQ== 357 + dependencies: 358 + "@babel/runtime" "^7.4.4" 359 + "@changesets/errors" "^0.1.2" 360 + "@changesets/types" "^0.4.0" 361 + fs-extra "^7.0.1" 362 + get-workspaces "^0.6.0" 363 + 364 + "@changesets/read@^0.4.1": 365 + version "0.4.1" 366 + resolved "https://registry.yarnpkg.com/@changesets/read/-/read-0.4.1.tgz#d657d68dd939c1f7f55f3c825d7a621374fa273f" 367 + integrity sha512-lHLetdkuBoQpq/rZomEmJ2jndnjilFha64EnQvvcmOQN4s8eqaXFjlDGSofWemmp4AlCAnVj/ZX+x/rp6WOrjg== 368 + dependencies: 369 + "@babel/runtime" "^7.4.4" 370 + "@changesets/git" "^0.4.0" 371 + "@changesets/logger" "^0.0.3" 372 + "@changesets/parse" "^0.3.1" 373 + "@changesets/types" "^0.4.0" 374 + chalk "^2.1.0" 375 + fs-extra "^7.0.1" 376 + p-filter "^2.1.0" 377 + 378 + "@changesets/types@^0.4.0": 379 + version "0.4.0" 380 + resolved "https://registry.yarnpkg.com/@changesets/types/-/types-0.4.0.tgz#3413badb2c3904357a36268cb9f8c7e0afc3a804" 381 + integrity sha512-TclHHKDVYQ8rJGZgVeWiF7c91yWzTTWdPagltgutelGu/Psup5PQlUq6svx7S8suj+jXcaE34yEEsfIvzXXB2Q== 382 + 212 383 "@cnakazawa/watch@^1.0.3": 213 384 version "1.0.3" 214 385 resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef" ··· 410 581 resolved "https://registry.yarnpkg.com/@kristoferbaxter/estree-walker/-/estree-walker-2.0.0.tgz#52ee40f9f8b59bbf00cac477a777aeb830ea5952" 411 582 integrity sha512-UmzP5tx+Jlqrn+R1wucLy/1Qr9jd8/Xj4rHVTfA3GLmhI+DJgRPVkvHPm1Wa23TM+2hg9GTtzqhWGqPaLmwIfQ== 412 583 584 + "@mrmlnc/readdir-enhanced@^2.2.1": 585 + version "2.2.1" 586 + resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" 587 + integrity sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g== 588 + dependencies: 589 + call-me-maybe "^1.0.1" 590 + glob-to-regexp "^0.3.0" 591 + 592 + "@nodelib/fs.stat@^1.1.2": 593 + version "1.1.3" 594 + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" 595 + integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== 596 + 413 597 "@rollup/plugin-buble@^0.21.0": 414 598 version "0.21.1" 415 599 resolved "https://registry.yarnpkg.com/@rollup/plugin-buble/-/plugin-buble-0.21.1.tgz#186413c2f27770bea4cefa86ba1c0aafd9593339" ··· 572 756 resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" 573 757 integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== 574 758 759 + "@types/events@*": 760 + version "3.0.0" 761 + resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" 762 + integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g== 763 + 764 + "@types/glob@^7.1.1": 765 + version "7.1.1" 766 + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575" 767 + integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== 768 + dependencies: 769 + "@types/events" "*" 770 + "@types/minimatch" "*" 771 + "@types/node" "*" 772 + 575 773 "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 576 774 version "2.0.1" 577 775 resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff" ··· 604 802 version "7.0.4" 605 803 resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339" 606 804 integrity sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA== 805 + 806 + "@types/minimatch@*": 807 + version "3.0.3" 808 + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" 809 + integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== 607 810 608 811 "@types/node@*": 609 812 version "13.7.0" ··· 653 856 integrity sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ== 654 857 dependencies: 655 858 "@types/node" "*" 859 + 860 + "@types/semver@^6.0.0": 861 + version "6.2.1" 862 + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-6.2.1.tgz#a236185670a7860f1597cf73bea2e16d001461ba" 863 + integrity sha512-+beqKQOh9PYxuHvijhVl+tIHvT6tuwOrE9m14zd+MT2A38KoKZhh7pYJ0SNleLtwDsiIxHDsIk9bv01oOxvSvA== 656 864 657 865 "@types/stack-utils@^1.0.1": 658 866 version "1.0.1" ··· 802 1010 json-schema-traverse "^0.4.1" 803 1011 uri-js "^4.2.2" 804 1012 1013 + ansi-align@^2.0.0: 1014 + version "2.0.0" 1015 + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" 1016 + integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= 1017 + dependencies: 1018 + string-width "^2.0.0" 1019 + 1020 + ansi-colors@^3.2.1: 1021 + version "3.2.4" 1022 + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" 1023 + integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== 1024 + 805 1025 ansi-escapes@^3.0.0, ansi-escapes@^3.1.0: 806 1026 version "3.2.0" 807 1027 resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" ··· 910 1130 resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 911 1131 integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= 912 1132 1133 + array-find-index@^1.0.1: 1134 + version "1.0.2" 1135 + resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 1136 + integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= 1137 + 913 1138 array-includes@^3.0.3, array-includes@^3.1.1: 914 1139 version "3.1.1" 915 1140 resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" ··· 919 1144 es-abstract "^1.17.0" 920 1145 is-string "^1.0.5" 921 1146 1147 + array-union@^1.0.2: 1148 + version "1.0.2" 1149 + resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 1150 + integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= 1151 + dependencies: 1152 + array-uniq "^1.0.1" 1153 + 1154 + array-uniq@^1.0.1: 1155 + version "1.0.3" 1156 + resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 1157 + integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= 1158 + 922 1159 array-unique@^0.3.2: 923 1160 version "0.3.2" 924 1161 resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" ··· 932 1169 define-properties "^1.1.3" 933 1170 es-abstract "^1.17.0-next.1" 934 1171 1172 + arrify@^1.0.1: 1173 + version "1.0.1" 1174 + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 1175 + integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= 1176 + 935 1177 asn1@~0.2.3: 936 1178 version "0.2.4" 937 1179 resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" ··· 1059 1301 resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" 1060 1302 integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== 1061 1303 1304 + boxen@^1.3.0: 1305 + version "1.3.0" 1306 + resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" 1307 + integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw== 1308 + dependencies: 1309 + ansi-align "^2.0.0" 1310 + camelcase "^4.0.0" 1311 + chalk "^2.0.1" 1312 + cli-boxes "^1.0.0" 1313 + string-width "^2.0.0" 1314 + term-size "^1.2.0" 1315 + widest-line "^2.0.0" 1316 + 1062 1317 brace-expansion@^1.1.7: 1063 1318 version "1.1.11" 1064 1319 resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" ··· 1089 1344 integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 1090 1345 dependencies: 1091 1346 fill-range "^7.0.1" 1347 + 1348 + breakword@^1.0.5: 1349 + version "1.0.5" 1350 + resolved "https://registry.yarnpkg.com/breakword/-/breakword-1.0.5.tgz#fd420a417f55016736b5b615161cae1c8f819810" 1351 + integrity sha512-ex5W9DoOQ/LUEU3PMdLs9ua/CYZl1678NUkKOdUSi8Aw5F1idieaiRURCBFJCwVcrD1J8Iy3vfWSloaMwO2qFg== 1352 + dependencies: 1353 + wcwidth "^1.0.1" 1092 1354 1093 1355 browser-process-hrtime@^0.1.2: 1094 1356 version "0.1.3" ··· 1155 1417 union-value "^1.0.0" 1156 1418 unset-value "^1.0.0" 1157 1419 1420 + call-me-maybe@^1.0.1: 1421 + version "1.0.1" 1422 + resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" 1423 + integrity sha1-JtII6onje1y95gJQoV8DHBak1ms= 1424 + 1158 1425 callsites@^3.0.0: 1159 1426 version "3.1.0" 1160 1427 resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 1161 1428 integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 1162 1429 1163 - camelcase@^4.1.0: 1430 + camelcase-keys@^4.0.0: 1431 + version "4.2.0" 1432 + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" 1433 + integrity sha1-oqpfsa9oh1glnDLBQUJteJI7m3c= 1434 + dependencies: 1435 + camelcase "^4.1.0" 1436 + map-obj "^2.0.0" 1437 + quick-lru "^1.0.0" 1438 + 1439 + camelcase@^4.0.0, camelcase@^4.1.0: 1164 1440 version "4.1.0" 1165 1441 resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 1166 1442 integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= ··· 1182 1458 resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1183 1459 integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= 1184 1460 1185 - chalk@2.x, chalk@^2.0.0, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4.1, chalk@^2.4.2: 1461 + chalk@2.x, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4.1, chalk@^2.4.2: 1186 1462 version "2.4.2" 1187 1463 resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1188 1464 integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== ··· 1230 1506 isobject "^3.0.0" 1231 1507 static-extend "^0.1.1" 1232 1508 1509 + cli-boxes@^1.0.0: 1510 + version "1.0.0" 1511 + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" 1512 + integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= 1513 + 1233 1514 cli-cursor@^2.0.0, cli-cursor@^2.1.0: 1234 1515 version "2.1.0" 1235 1516 resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" ··· 1284 1565 version "1.0.0" 1285 1566 resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" 1286 1567 integrity sha1-s3gt/4u1R04Yuba/D9/ngvh3doA= 1568 + 1569 + clone@^1.0.2: 1570 + version "1.0.4" 1571 + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" 1572 + integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= 1287 1573 1288 1574 clone@^2.1.1: 1289 1575 version "2.1.2" ··· 1416 1702 path-type "^4.0.0" 1417 1703 yaml "^1.7.2" 1418 1704 1705 + cross-spawn@^5.0.1, cross-spawn@^5.1.0: 1706 + version "5.1.0" 1707 + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 1708 + integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= 1709 + dependencies: 1710 + lru-cache "^4.0.1" 1711 + shebang-command "^1.2.0" 1712 + which "^1.2.9" 1713 + 1419 1714 cross-spawn@^6.0.0, cross-spawn@^6.0.5: 1420 1715 version "6.0.5" 1421 1716 resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" ··· 1458 1753 resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.8.tgz#0fb6fc2417ffd2816a418c9336da74d7f07db431" 1459 1754 integrity sha512-msVS9qTuMT5zwAGCVm4mxfrZ18BNc6Csd0oJAtiFMZ1FAx1CCvy2+5MDmYoix63LM/6NDbNtodCiGYGmFgO0dA== 1460 1755 1756 + csv-generate@^3.2.4: 1757 + version "3.2.4" 1758 + resolved "https://registry.yarnpkg.com/csv-generate/-/csv-generate-3.2.4.tgz#440dab9177339ee0676c9e5c16f50e2b3463c019" 1759 + integrity sha512-qNM9eqlxd53TWJeGtY1IQPj90b563Zx49eZs8e0uMyEvPgvNVmX1uZDtdzAcflB3PniuH9creAzcFOdyJ9YGvA== 1760 + 1761 + csv-parse@^4.8.2: 1762 + version "4.8.5" 1763 + resolved "https://registry.yarnpkg.com/csv-parse/-/csv-parse-4.8.5.tgz#32e92a0e0acedab141bd5c5a3ad6fc3316f2c72d" 1764 + integrity sha512-rpsLmlLWJZifmLzZEVGbZ9phWnJyi+cCbCGYr4vX2NaHFtgbmQPFk+WmMkmMkQXgsIUn6CgnK9cTuUAfFjoXbA== 1765 + 1766 + csv-stringify@^5.3.4: 1767 + version "5.3.6" 1768 + resolved "https://registry.yarnpkg.com/csv-stringify/-/csv-stringify-5.3.6.tgz#2655e2e1c01b97b3963bccbc9407b8fb876dc589" 1769 + integrity sha512-kPcRbMvo5NLLD71TAqW5K+g9kbM2HpIZJLAzm73Du8U+5TXmDp9YtXKCBLyxEh0q3Jbg8QhNFBz3b5VJzjZ/jw== 1770 + 1771 + csv@^5.3.1: 1772 + version "5.3.1" 1773 + resolved "https://registry.yarnpkg.com/csv/-/csv-5.3.1.tgz#8ceb548813182d3d76a13889878c6b06104927b0" 1774 + integrity sha512-UBO4x5EYpihikfjHUQ7dCTIgC+e9TrWWZbCcoMr935tcAZfXT1MZKHLD+aYSHs1jwW2G1uljpFfJ4XxYwQ6t5w== 1775 + dependencies: 1776 + csv-generate "^3.2.4" 1777 + csv-parse "^4.8.2" 1778 + csv-stringify "^5.3.4" 1779 + stream-transform "^2.0.1" 1780 + 1781 + currently-unhandled@^0.4.1: 1782 + version "0.4.1" 1783 + resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 1784 + integrity sha1-mI3zP+qxke95mmE2nddsF635V+o= 1785 + dependencies: 1786 + array-find-index "^1.0.1" 1787 + 1461 1788 dashdash@^1.12.0: 1462 1789 version "1.14.1" 1463 1790 resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" ··· 1474 1801 whatwg-mimetype "^2.2.0" 1475 1802 whatwg-url "^7.0.0" 1476 1803 1804 + dataloader@^1.4.0: 1805 + version "1.4.0" 1806 + resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-1.4.0.tgz#bca11d867f5d3f1b9ed9f737bd15970c65dff5c8" 1807 + integrity sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw== 1808 + 1477 1809 date-fns@^1.27.2: 1478 1810 version "1.30.1" 1479 1811 resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c" ··· 1493 1825 dependencies: 1494 1826 ms "^2.1.1" 1495 1827 1496 - decamelize@^1.1.1, decamelize@^1.2.0: 1828 + decamelize-keys@^1.0.0: 1829 + version "1.1.0" 1830 + resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" 1831 + integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk= 1832 + dependencies: 1833 + decamelize "^1.1.0" 1834 + map-obj "^1.0.0" 1835 + 1836 + decamelize@^1.1.0, decamelize@^1.1.1, decamelize@^1.2.0: 1497 1837 version "1.2.0" 1498 1838 resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1499 1839 integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= ··· 1513 1853 resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 1514 1854 integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 1515 1855 1856 + defaults@^1.0.3: 1857 + version "1.0.3" 1858 + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" 1859 + integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= 1860 + dependencies: 1861 + clone "^1.0.2" 1862 + 1516 1863 define-properties@^1.1.2, define-properties@^1.1.3: 1517 1864 version "1.1.3" 1518 1865 resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" ··· 1561 1908 version "25.1.0" 1562 1909 resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.1.0.tgz#fd29a46f1c913fd66c22645dc75bffbe43051f32" 1563 1910 integrity sha512-nFIfVk5B/NStCsJ+zaPO4vYuLjlzQ6uFvPxzYyHlejNZ/UGa7G/n7peOXVrVNvRuyfstt+mZQYGpjxg9Z6N8Kw== 1911 + 1912 + dir-glob@^2.2.2: 1913 + version "2.2.2" 1914 + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4" 1915 + integrity sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw== 1916 + dependencies: 1917 + path-type "^3.0.0" 1564 1918 1565 1919 doctrine@1.5.0: 1566 1920 version "1.5.0" ··· 1591 1945 dependencies: 1592 1946 webidl-conversions "^4.0.2" 1593 1947 1948 + dotenv@^8.1.0: 1949 + version "8.2.0" 1950 + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" 1951 + integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== 1952 + 1594 1953 ecc-jsbn@~0.1.1: 1595 1954 version "0.1.2" 1596 1955 resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" ··· 1621 1980 dependencies: 1622 1981 once "^1.4.0" 1623 1982 1983 + enquirer@^2.3.0: 1984 + version "2.3.4" 1985 + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.4.tgz#c608f2e1134c7f68c1c9ee056de13f9b31076de9" 1986 + integrity sha512-pkYrrDZumL2VS6VBGDhqbajCM2xpkUNLuKfGPjfKaSIBKYopQbqEFyrOkRMIb2HDR/rO1kGhEt/5twBwtzKBXw== 1987 + dependencies: 1988 + ansi-colors "^3.2.1" 1989 + 1624 1990 error-ex@^1.2.0, error-ex@^1.3.1: 1625 1991 version "1.3.2" 1626 1992 resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" ··· 1849 2215 resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5" 1850 2216 integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A== 1851 2217 2218 + execa@^0.7.0: 2219 + version "0.7.0" 2220 + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 2221 + integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= 2222 + dependencies: 2223 + cross-spawn "^5.0.1" 2224 + get-stream "^3.0.0" 2225 + is-stream "^1.1.0" 2226 + npm-run-path "^2.0.0" 2227 + p-finally "^1.0.0" 2228 + signal-exit "^3.0.0" 2229 + strip-eof "^1.0.0" 2230 + 1852 2231 execa@^1.0.0: 1853 2232 version "1.0.0" 1854 2233 resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" ··· 1943 2322 resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 1944 2323 integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 1945 2324 2325 + extendable-error@^0.1.5: 2326 + version "0.1.5" 2327 + resolved "https://registry.yarnpkg.com/extendable-error/-/extendable-error-0.1.5.tgz#122308a7097bc89a263b2c4fbf089c78140e3b6d" 2328 + integrity sha1-EiMIpwl7yJomOyxPvwiceBQOO20= 2329 + 1946 2330 external-editor@^3.0.3: 1947 2331 version "3.1.0" 1948 2332 resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" ··· 1981 2365 resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" 1982 2366 integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== 1983 2367 2368 + fast-glob@^2.2.6: 2369 + version "2.2.7" 2370 + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" 2371 + integrity sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw== 2372 + dependencies: 2373 + "@mrmlnc/readdir-enhanced" "^2.2.1" 2374 + "@nodelib/fs.stat" "^1.1.2" 2375 + glob-parent "^3.1.0" 2376 + is-glob "^4.0.0" 2377 + merge2 "^1.2.3" 2378 + micromatch "^3.1.10" 2379 + 1984 2380 fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: 1985 2381 version "2.1.0" 1986 2382 resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" ··· 2124 2520 jsonfile "^4.0.0" 2125 2521 universalify "^0.1.0" 2126 2522 2523 + fs-extra@^7.0.1: 2524 + version "7.0.1" 2525 + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" 2526 + integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== 2527 + dependencies: 2528 + graceful-fs "^4.1.2" 2529 + jsonfile "^4.0.0" 2530 + universalify "^0.1.0" 2531 + 2127 2532 fs.realpath@^1.0.0: 2128 2533 version "1.0.0" 2129 2534 resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" ··· 2159 2564 resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 2160 2565 integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 2161 2566 2567 + get-dependents-graph@^0.2.0: 2568 + version "0.2.0" 2569 + resolved "https://registry.yarnpkg.com/get-dependents-graph/-/get-dependents-graph-0.2.0.tgz#737f66dec35f222323d5cbce734e7012523c7c3a" 2570 + integrity sha512-NgzJ0APaQOix88TjHmRjNJzq/tjKALBMPLJ35A/PmWUY9ThB8UQtiMM+I2oHWjAXjQBXoxusw/aPcw8hut96Yg== 2571 + dependencies: 2572 + "@changesets/types" "^0.4.0" 2573 + chalk "^2.1.0" 2574 + fs-extra "^7.0.1" 2575 + get-workspaces "^0.6.0" 2576 + semver "^5.4.1" 2577 + 2162 2578 get-own-enumerable-property-symbols@^3.0.0: 2163 2579 version "3.0.2" 2164 2580 resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" ··· 2168 2584 version "6.0.0" 2169 2585 resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" 2170 2586 integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== 2587 + 2588 + get-stream@^3.0.0: 2589 + version "3.0.0" 2590 + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 2591 + integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= 2171 2592 2172 2593 get-stream@^4.0.0: 2173 2594 version "4.1.0" ··· 2187 2608 version "2.0.6" 2188 2609 resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" 2189 2610 integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= 2611 + 2612 + get-workspaces@^0.6.0: 2613 + version "0.6.0" 2614 + resolved "https://registry.yarnpkg.com/get-workspaces/-/get-workspaces-0.6.0.tgz#0060bd2238324fd9b7ed7bb9c63f7561fd72001b" 2615 + integrity sha512-EWfuENHoxNGk4xoel0jJdm/nhm8oMGQYRsTWJDqrHaj7jyebSckZI0TwQaeWX1rzqpMLULYFrdxhYJPI1l2j3w== 2616 + dependencies: 2617 + "@changesets/types" "^0.4.0" 2618 + fs-extra "^7.0.1" 2619 + globby "^9.2.0" 2620 + read-yaml-file "^1.1.0" 2190 2621 2191 2622 getpass@^0.1.1: 2192 2623 version "0.1.7" ··· 2195 2626 dependencies: 2196 2627 assert-plus "^1.0.0" 2197 2628 2629 + glob-parent@^3.1.0: 2630 + version "3.1.0" 2631 + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" 2632 + integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= 2633 + dependencies: 2634 + is-glob "^3.1.0" 2635 + path-dirname "^1.0.0" 2636 + 2198 2637 glob-parent@^5.0.0: 2199 2638 version "5.1.0" 2200 2639 resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2" ··· 2202 2641 dependencies: 2203 2642 is-glob "^4.0.1" 2204 2643 2644 + glob-to-regexp@^0.3.0: 2645 + version "0.3.0" 2646 + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" 2647 + integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= 2648 + 2205 2649 glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: 2206 2650 version "7.1.6" 2207 2651 resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" ··· 2226 2670 dependencies: 2227 2671 type-fest "^0.8.1" 2228 2672 2673 + globby@^9.2.0: 2674 + version "9.2.0" 2675 + resolved "https://registry.yarnpkg.com/globby/-/globby-9.2.0.tgz#fd029a706c703d29bdd170f4b6db3a3f7a7cb63d" 2676 + integrity sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg== 2677 + dependencies: 2678 + "@types/glob" "^7.1.1" 2679 + array-union "^1.0.2" 2680 + dir-glob "^2.2.2" 2681 + fast-glob "^2.2.6" 2682 + glob "^7.1.3" 2683 + ignore "^4.0.3" 2684 + pify "^4.0.1" 2685 + slash "^2.0.0" 2686 + 2229 2687 google-closure-compiler-java@^20200112.0.0: 2230 2688 version "20200112.0.0" 2231 2689 resolved "https://registry.yarnpkg.com/google-closure-compiler-java/-/google-closure-compiler-java-20200112.0.0.tgz#2b99f5e2869a573a1b35558ff3b6e6bc054a116f" ··· 2267 2725 google-closure-compiler-osx "^20200112.0.0" 2268 2726 google-closure-compiler-windows "^20200112.0.0" 2269 2727 2270 - graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.3: 2728 + graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.5, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.3: 2271 2729 version "4.2.3" 2272 2730 resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" 2273 2731 integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== ··· 2388 2846 jsprim "^1.2.2" 2389 2847 sshpk "^1.7.0" 2390 2848 2849 + human-id@^1.0.2: 2850 + version "1.0.2" 2851 + resolved "https://registry.yarnpkg.com/human-id/-/human-id-1.0.2.tgz#e654d4b2b0d8b07e45da9f6020d8af17ec0a5df3" 2852 + integrity sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw== 2853 + 2391 2854 human-signals@^1.1.1: 2392 2855 version "1.1.1" 2393 2856 resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" ··· 2416 2879 dependencies: 2417 2880 safer-buffer ">= 2.1.2 < 3" 2418 2881 2419 - ignore@^4.0.6: 2882 + ignore@^4.0.3, ignore@^4.0.6: 2420 2883 version "4.0.6" 2421 2884 resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 2422 2885 integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== ··· 2590 3053 dependencies: 2591 3054 is-plain-object "^2.0.4" 2592 3055 2593 - is-extglob@^2.1.1: 3056 + is-extglob@^2.1.0, is-extglob@^2.1.1: 2594 3057 version "2.1.1" 2595 3058 resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 2596 3059 integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= ··· 2617 3080 resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 2618 3081 integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 2619 3082 3083 + is-glob@^3.1.0: 3084 + version "3.1.0" 3085 + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" 3086 + integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= 3087 + dependencies: 3088 + is-extglob "^2.1.0" 3089 + 2620 3090 is-glob@^4.0.0, is-glob@^4.0.1: 2621 3091 version "4.0.1" 2622 3092 resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" ··· 2660 3130 dependencies: 2661 3131 path-is-inside "^1.0.2" 2662 3132 2663 - is-plain-obj@^1.0.0: 3133 + is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: 2664 3134 version "1.1.0" 2665 3135 resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 2666 3136 integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= ··· 3197 3667 resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 3198 3668 integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 3199 3669 3200 - js-yaml@^3.13.1: 3670 + js-yaml@^3.13.1, js-yaml@^3.6.1: 3201 3671 version "3.13.1" 3202 3672 resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" 3203 3673 integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== ··· 3471 3941 resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 3472 3942 integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= 3473 3943 3944 + lodash.startcase@^4.4.0: 3945 + version "4.4.0" 3946 + resolved "https://registry.yarnpkg.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz#9436e34ed26093ed7ffae1936144350915d9add8" 3947 + integrity sha1-lDbjTtJgk+1/+uGTYUQ1CRXZrdg= 3948 + 3474 3949 lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.4: 3475 3950 version "4.17.15" 3476 3951 resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" ··· 3513 3988 dependencies: 3514 3989 js-tokens "^3.0.0 || ^4.0.0" 3515 3990 3991 + loud-rejection@^1.0.0: 3992 + version "1.6.0" 3993 + resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 3994 + integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8= 3995 + dependencies: 3996 + currently-unhandled "^0.4.1" 3997 + signal-exit "^3.0.0" 3998 + 3999 + lru-cache@^4.0.1: 4000 + version "4.1.5" 4001 + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 4002 + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 4003 + dependencies: 4004 + pseudomap "^1.0.2" 4005 + yallist "^2.1.2" 4006 + 3516 4007 magic-string@0.25.6, magic-string@^0.25.0, magic-string@^0.25.2, magic-string@^0.25.3, magic-string@^0.25.5: 3517 4008 version "0.25.6" 3518 4009 resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.6.tgz#5586387d1242f919c6d223579cc938bf1420795e" ··· 3566 4057 resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" 3567 4058 integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= 3568 4059 4060 + map-obj@^1.0.0: 4061 + version "1.0.1" 4062 + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 4063 + integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= 4064 + 4065 + map-obj@^2.0.0: 4066 + version "2.0.0" 4067 + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" 4068 + integrity sha1-plzSkIepJZi4eRJXpSPgISIqwfk= 4069 + 3569 4070 map-visit@^1.0.0: 3570 4071 version "1.0.0" 3571 4072 resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" ··· 3587 4088 resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" 3588 4089 integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI= 3589 4090 4091 + meow@^5.0.0: 4092 + version "5.0.0" 4093 + resolved "https://registry.yarnpkg.com/meow/-/meow-5.0.0.tgz#dfc73d63a9afc714a5e371760eb5c88b91078aa4" 4094 + integrity sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig== 4095 + dependencies: 4096 + camelcase-keys "^4.0.0" 4097 + decamelize-keys "^1.0.0" 4098 + loud-rejection "^1.0.0" 4099 + minimist-options "^3.0.1" 4100 + normalize-package-data "^2.3.4" 4101 + read-pkg-up "^3.0.0" 4102 + redent "^2.0.0" 4103 + trim-newlines "^2.0.0" 4104 + yargs-parser "^10.0.0" 4105 + 3590 4106 merge-stream@^2.0.0: 3591 4107 version "2.0.0" 3592 4108 resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 3593 4109 integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 4110 + 4111 + merge2@^1.2.3: 4112 + version "1.3.0" 4113 + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81" 4114 + integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw== 3594 4115 3595 4116 messageformat-formatters@^2.0.1: 3596 4117 version "2.0.1" ··· 3611 4132 messageformat-formatters "^2.0.1" 3612 4133 messageformat-parser "^4.1.2" 3613 4134 3614 - micromatch@^3.1.4: 4135 + micromatch@^3.1.10, micromatch@^3.1.4: 3615 4136 version "3.1.10" 3616 4137 resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 3617 4138 integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== ··· 3666 4187 integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 3667 4188 dependencies: 3668 4189 brace-expansion "^1.1.7" 4190 + 4191 + minimist-options@^3.0.1: 4192 + version "3.0.2" 4193 + resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954" 4194 + integrity sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ== 4195 + dependencies: 4196 + arrify "^1.0.1" 4197 + is-plain-obj "^1.1.0" 3669 4198 3670 4199 minimist@0.0.8: 3671 4200 version "0.0.8" ··· 3685 4214 for-in "^1.0.2" 3686 4215 is-extendable "^1.0.1" 3687 4216 4217 + mixme@^0.3.1: 4218 + version "0.3.5" 4219 + resolved "https://registry.yarnpkg.com/mixme/-/mixme-0.3.5.tgz#304652cdaf24a3df0487205e61ac6162c6906ddd" 4220 + integrity sha512-SyV9uPETRig5ZmYev0ANfiGeB+g6N2EnqqEfBbCGmmJ6MgZ3E4qv5aPbnHVdZ60KAHHXV+T3sXopdrnIXQdmjQ== 4221 + 3688 4222 mkdirp@0.x, mkdirp@^0.5.1: 3689 4223 version "0.5.1" 3690 4224 resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" ··· 3734 4268 resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 3735 4269 integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 3736 4270 4271 + node-fetch@^2.5.0: 4272 + version "2.6.0" 4273 + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" 4274 + integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== 4275 + 3737 4276 node-int64@^0.4.0: 3738 4277 version "0.4.0" 3739 4278 resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" ··· 3755 4294 shellwords "^0.1.1" 3756 4295 which "^1.3.1" 3757 4296 3758 - normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: 4297 + normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.5.0: 3759 4298 version "2.5.0" 3760 4299 resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 3761 4300 integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== ··· 3969 4508 resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 3970 4509 integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 3971 4510 4511 + outdent@^0.5.0: 4512 + version "0.5.0" 4513 + resolved "https://registry.yarnpkg.com/outdent/-/outdent-0.5.0.tgz#9e10982fdc41492bb473ad13840d22f9655be2ff" 4514 + integrity sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q== 4515 + 3972 4516 p-defer@^1.0.0: 3973 4517 version "1.0.0" 3974 4518 resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" ··· 3979 4523 resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.1.0.tgz#961c8dd3f195ea96c747e636b262b800a6b1af48" 3980 4524 integrity sha512-ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ== 3981 4525 4526 + p-filter@^2.1.0: 4527 + version "2.1.0" 4528 + resolved "https://registry.yarnpkg.com/p-filter/-/p-filter-2.1.0.tgz#1b1472562ae7a0f742f0f3d3d3718ea66ff9c09c" 4529 + integrity sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw== 4530 + dependencies: 4531 + p-map "^2.0.0" 4532 + 3982 4533 p-finally@^1.0.0: 3983 4534 version "1.0.0" 3984 4535 resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" ··· 4079 4630 resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" 4080 4631 integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= 4081 4632 4633 + path-dirname@^1.0.0: 4634 + version "1.0.2" 4635 + resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" 4636 + integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= 4637 + 4082 4638 path-exists@^3.0.0: 4083 4639 version "3.0.0" 4084 4640 resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" ··· 4211 4767 resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 4212 4768 integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 4213 4769 4214 - prettier@^1.19.1: 4770 + prettier@^1.18.2, prettier@^1.19.1: 4215 4771 version "1.19.1" 4216 4772 resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" 4217 4773 integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== ··· 4271 4827 object-assign "^4.1.1" 4272 4828 react-is "^16.8.1" 4273 4829 4830 + pseudomap@^1.0.2: 4831 + version "1.0.2" 4832 + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 4833 + integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 4834 + 4274 4835 psl@^1.1.24, psl@^1.1.28: 4275 4836 version "1.7.0" 4276 4837 resolved "https://registry.yarnpkg.com/psl/-/psl-1.7.0.tgz#f1c4c47a8ef97167dea5d6bbf4816d736e884a3c" ··· 4298 4859 version "6.5.2" 4299 4860 resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 4300 4861 integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== 4862 + 4863 + quick-lru@^1.0.0: 4864 + version "1.1.0" 4865 + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" 4866 + integrity sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g= 4301 4867 4302 4868 react-dom@^16.12.0: 4303 4869 version "16.12.0" ··· 4348 4914 find-up "^2.0.0" 4349 4915 read-pkg "^2.0.0" 4350 4916 4917 + read-pkg-up@^3.0.0: 4918 + version "3.0.0" 4919 + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" 4920 + integrity sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc= 4921 + dependencies: 4922 + find-up "^2.0.0" 4923 + read-pkg "^3.0.0" 4924 + 4351 4925 read-pkg@^2.0.0: 4352 4926 version "2.0.0" 4353 4927 resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" ··· 4376 4950 parse-json "^5.0.0" 4377 4951 type-fest "^0.6.0" 4378 4952 4953 + read-yaml-file@^1.1.0: 4954 + version "1.1.0" 4955 + resolved "https://registry.yarnpkg.com/read-yaml-file/-/read-yaml-file-1.1.0.tgz#9362bbcbdc77007cc8ea4519fe1c0b821a7ce0d8" 4956 + integrity sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA== 4957 + dependencies: 4958 + graceful-fs "^4.1.5" 4959 + js-yaml "^3.6.1" 4960 + pify "^4.0.1" 4961 + strip-bom "^3.0.0" 4962 + 4379 4963 readable-stream@^2.3.5: 4380 4964 version "2.3.7" 4381 4965 resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" ··· 4396 4980 dependencies: 4397 4981 util.promisify "^1.0.0" 4398 4982 4983 + redent@^2.0.0: 4984 + version "2.0.0" 4985 + resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" 4986 + integrity sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo= 4987 + dependencies: 4988 + indent-string "^3.0.0" 4989 + strip-indent "^2.0.0" 4990 + 4399 4991 regenerate-unicode-properties@^8.1.0: 4400 4992 version "8.1.0" 4401 4993 resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" ··· 4845 5437 resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.4.tgz#386713f1ef688c7c0304dc4c0632898941cad2e3" 4846 5438 integrity sha512-/ekMoM4NJ59ivGSfKapeG+FWtrmWvA1p6FBZwXrqojw90vJu8lBmrTxCMuBCydKtkaUe2zt4PlxeTKpjwMbyig== 4847 5439 5440 + slash@^2.0.0: 5441 + version "2.0.0" 5442 + resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" 5443 + integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== 5444 + 4848 5445 slash@^3.0.0: 4849 5446 version "3.0.0" 4850 5447 resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" ··· 4863 5460 ansi-styles "^3.2.0" 4864 5461 astral-regex "^1.0.0" 4865 5462 is-fullwidth-code-point "^2.0.0" 5463 + 5464 + smartwrap@^1.2.1: 5465 + version "1.2.1" 5466 + resolved "https://registry.yarnpkg.com/smartwrap/-/smartwrap-1.2.1.tgz#d999ae117a42ab2028f5296dda2c3287e3a6b8d4" 5467 + integrity sha512-Il2w1OE1iZFxkahdafzq31yqgqNj4egafxBHNTQ28Eo24+2KwvVBe9Hj7hX4azO6TntLD3/7Xkj7bg2z0QbEhw== 5468 + dependencies: 5469 + breakword "^1.0.5" 5470 + wcwidth "^1.0.1" 5471 + yargs "^15.1.0" 4866 5472 4867 5473 snapdragon-node@^2.0.1: 4868 5474 version "2.1.1" ··· 4944 5550 version "1.4.8" 4945 5551 resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" 4946 5552 integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 5553 + 5554 + spawndamnit@^2.0.0: 5555 + version "2.0.0" 5556 + resolved "https://registry.yarnpkg.com/spawndamnit/-/spawndamnit-2.0.0.tgz#9f762ac5c3476abb994b42ad592b5ad22bb4b0ad" 5557 + integrity sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA== 5558 + dependencies: 5559 + cross-spawn "^5.1.0" 5560 + signal-exit "^3.0.2" 4947 5561 4948 5562 spdx-correct@^3.0.0: 4949 5563 version "3.1.0" ··· 5023 5637 resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 5024 5638 integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= 5025 5639 5640 + stream-transform@^2.0.1: 5641 + version "2.0.1" 5642 + resolved "https://registry.yarnpkg.com/stream-transform/-/stream-transform-2.0.1.tgz#112ef2b4d8b9b517f9a6994b0bf7b946fa4d51bc" 5643 + integrity sha512-GiTcO/rRvZP2R8WPwxmxCFP+Of1yIATuFAmYkvSLDfcD93X2WHiPwdgIqeFT2CvL1gyAsjQvu1nB6RDNQ5b2jw== 5644 + dependencies: 5645 + mixme "^0.3.1" 5646 + 5026 5647 string-argv@0.3.1: 5027 5648 version "0.3.1" 5028 5649 resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" ··· 5171 5792 resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 5172 5793 integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 5173 5794 5795 + strip-indent@^2.0.0: 5796 + version "2.0.0" 5797 + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 5798 + integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= 5799 + 5174 5800 strip-json-comments@^3.0.1: 5175 5801 version "3.0.1" 5176 5802 resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7" ··· 5235 5861 slice-ansi "^2.1.0" 5236 5862 string-width "^3.0.0" 5237 5863 5864 + term-size@^1.2.0: 5865 + version "1.2.0" 5866 + resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" 5867 + integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= 5868 + dependencies: 5869 + execa "^0.7.0" 5870 + 5871 + term-size@^2.1.0: 5872 + version "2.2.0" 5873 + resolved "https://registry.yarnpkg.com/term-size/-/term-size-2.2.0.tgz#1f16adedfe9bdc18800e1776821734086fcc6753" 5874 + integrity sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw== 5875 + 5238 5876 terminal-link@^2.0.0: 5239 5877 version "2.1.1" 5240 5878 resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" ··· 5362 6000 dependencies: 5363 6001 punycode "^2.1.0" 5364 6002 6003 + trim-newlines@^2.0.0: 6004 + version "2.0.0" 6005 + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20" 6006 + integrity sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA= 6007 + 5365 6008 ts-jest@^25.1.0: 5366 6009 version "25.2.0" 5367 6010 resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-25.2.0.tgz#dfd87c2b71ef4867f5a0a44f40cb9c67e02991ac" ··· 5389 6032 integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g== 5390 6033 dependencies: 5391 6034 tslib "^1.8.1" 6035 + 6036 + tty-table@^2.7.0: 6037 + version "2.8.6" 6038 + resolved "https://registry.yarnpkg.com/tty-table/-/tty-table-2.8.6.tgz#503d75cbb28bc1f3d6836e74ee6fdc63a28dd3cd" 6039 + integrity sha512-RFjw8e1BRHuy1PQfb3h1JpmubFCjoltongMIMIu28CnpmZuEvsfvMFZyU7jRr5oFvPAIv3UJemJowGDrBPKSPQ== 6040 + dependencies: 6041 + chalk "^2.4.2" 6042 + csv "^5.3.1" 6043 + smartwrap "^1.2.1" 6044 + strip-ansi "^6.0.0" 6045 + wcwidth "^1.0.1" 6046 + yargs "^15.1.0" 5392 6047 5393 6048 tunnel-agent@^0.6.0: 5394 6049 version "0.6.0" ··· 5609 6264 dependencies: 5610 6265 makeerror "1.0.x" 5611 6266 6267 + wcwidth@^1.0.1: 6268 + version "1.0.1" 6269 + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" 6270 + integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= 6271 + dependencies: 6272 + defaults "^1.0.3" 6273 + 5612 6274 webidl-conversions@^4.0.2: 5613 6275 version "4.0.2" 5614 6276 resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" ··· 5658 6320 integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 5659 6321 dependencies: 5660 6322 isexe "^2.0.0" 6323 + 6324 + widest-line@^2.0.0: 6325 + version "2.0.1" 6326 + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" 6327 + integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== 6328 + dependencies: 6329 + string-width "^2.1.1" 5661 6330 5662 6331 "wonka@^3.2.1 || ^4.0.0", wonka@^4.0.6, wonka@^4.0.7: 5663 6332 version "4.0.7" ··· 5786 6455 resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" 5787 6456 integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== 5788 6457 6458 + yallist@^2.1.2: 6459 + version "2.1.2" 6460 + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 6461 + integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 6462 + 5789 6463 yaml@^1.7.2: 5790 6464 version "1.7.2" 5791 6465 resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.7.2.tgz#f26aabf738590ab61efaca502358e48dc9f348b2" ··· 5793 6467 dependencies: 5794 6468 "@babel/runtime" "^7.6.3" 5795 6469 5796 - yargs-parser@10.x: 6470 + yargs-parser@10.x, yargs-parser@^10.0.0: 5797 6471 version "10.1.0" 5798 6472 resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" 5799 6473 integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ== ··· 5833 6507 y18n "^3.2.1" 5834 6508 yargs-parser "^9.0.2" 5835 6509 5836 - yargs@^15.0.0: 6510 + yargs@^15.0.0, yargs@^15.1.0: 5837 6511 version "15.1.0" 5838 6512 resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.1.0.tgz#e111381f5830e863a89550bd4b136bb6a5f37219" 5839 6513 integrity sha512-T39FNN1b6hCW4SOIk1XyTOWxtXdcen0t+XYrysQmChzSipvhBO8Bj0nK1ozAasdk24dNWuMZvr4k24nz+8HHLg==