Bump tslib from 1.11.1 to 2.0.0 in /desktop (#1258)
Summary: Bumps [tslib](https://github.com/Microsoft/tslib) from 1.11.1 to 2.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Microsoft/tslib/releases">tslib's releases</a>.</em></p> <blockquote> <h2>tslib 2.0.0</h2> <p>This release changes <code>__exportStar</code> and <code>__importStar</code> to use <code>__createBinding</code> which is incompatible with versions of TypeScript older than 3.9 (i.e. 3.8 and below).</p> <h2>tslib 1.13.0</h2> <p>This release reverts breaking changes in tslib that were not compatible with versions of TypeScript prior to 3.9. The behavior slightly diverges from that of TypeScript 3.9, but generally is compatible with previous versions of TypeScript-authored code.</p> <p>The new behavior of TypeScript 3.9 will be available in tslib 2.0.0.</p> <p><a href="https://github-redirect.dependabot.com/microsoft/tslib/pull/109">See this pull request</a> for more details.</p> <h2>tslib 1.12.0</h2> <p>This release adds the <code>__createBinding</code> helper function which is used by non-ECMAScript module emit in TypeScript 3.9.</p> <h2>tslib 1.11.2</h2> <p>This release <a href="https://github-redirect.dependabot.com/microsoft/tslib/pull/96">relicenses tslib to the 0BSD license</a> which should allow projects that embed or bundle tslib to omit its license header.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="2d120146f6"><code>2d12014</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/Microsoft/tslib/issues/112">https://github.com/facebook/flipper/issues/112</a> from microsoft/revert-109-revert3.9Changes</li> <li><a href="19e3f35015"><code>19e3f35</code></a> Switch to 2.0.0</li> <li><a href="fa5c8a0b76"><code>fa5c8a0</code></a> Switch from const to var</li> <li><a href="1a9d7477f3"><code>1a9d747</code></a> Revert "Revert changes to pre-3.9 behavior, update version to 1.13.0"</li> <li><a href="b7e9c51bf7"><code>b7e9c51</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/Microsoft/tslib/issues/109">https://github.com/facebook/flipper/issues/109</a> from microsoft/revert3.9Changes</li> <li><a href="7b69d91f43"><code>7b69d91</code></a> Semicolon</li> <li><a href="0587b2af68"><code>0587b2a</code></a> Add back 'p !== default'</li> <li><a href="ce3462e9da"><code>ce3462e</code></a> Re-add '__createBinding'.</li> <li><a href="e6dc41c6d7"><code>e6dc41c</code></a> Update version number.</li> <li><a href="12fca3bb5a"><code>12fca3b</code></a> Revert changes to pre-3.9 behavior.</li> <li>Additional commits viewable in <a href="https://github.com/Microsoft/tslib/compare/1.11.1...2.0.0">compare view</a></li> </ul> </details> <br /> [](https://help.github.com/articles/configuring-automated-security-fixes) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `dependabot rebase` will rebase this PR - `dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `dependabot merge` will merge this PR after your CI passes on it - `dependabot squash and merge` will squash and merge this PR after your CI passes on it - `dependabot cancel merge` will cancel a previously requested merge and block automerging - `dependabot reopen` will reopen this PR if it is closed - `dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually </details> Pull Request resolved: https://github.com/facebook/flipper/pull/1258 Reviewed By: nikoant Differential Revision: D22118750 Pulled By: passy fbshipit-source-id: b9413bda5a1f0df98374cc114e36358a6b168c67
This commit is contained in:
committed by
Facebook GitHub Bot
parent
b1ca674171
commit
4ac9dc9eda
@@ -27,7 +27,7 @@
|
||||
"@types/node": "^13.7.5",
|
||||
"babel-plugin-emotion": "^10.0.33",
|
||||
"fs-extra": "^8.1.0",
|
||||
"tslib": "^1"
|
||||
"tslib": "^2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/jest": "25.1.4",
|
||||
|
||||
@@ -11992,11 +11992,16 @@ tsconfig-paths@^3.9.0:
|
||||
minimist "^1.2.0"
|
||||
strip-bom "^3.0.0"
|
||||
|
||||
tslib@^1, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3:
|
||||
tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3:
|
||||
version "1.11.1"
|
||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35"
|
||||
integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA==
|
||||
|
||||
tslib@^2:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.0.tgz#18d13fc2dce04051e20f074cc8387fd8089ce4f3"
|
||||
integrity sha512-lTqkx847PI7xEDYJntxZH89L2/aXInsyF2luSafe/+0fHOMjlBNXdH6th7f70qxLDhul7KZK0zC8V5ZIyHl0/g==
|
||||
|
||||
tslint-config-prettier@^1.18.0:
|
||||
version "1.18.0"
|
||||
resolved "https://registry.yarnpkg.com/tslint-config-prettier/-/tslint-config-prettier-1.18.0.tgz#75f140bde947d35d8f0d238e0ebf809d64592c37"
|
||||
|
||||
Reference in New Issue
Block a user