Summary: Bumps [metro-cache](https://github.com/facebook/metro) from 0.65.2 to 0.66.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/metro/releases">metro-cache's releases</a>.</em></p> <blockquote> <h2>Release v0.66.0</h2> <ul> <li><strong>[Breaking]</strong> metro-symbolicate: Optionally accept a SourceURL parameter for debug builds (7ad7560)</li> <li><strong>[Feature]</strong> Move generator to Hermes stable (b280477)</li> <li><strong>[Feature]</strong> Move for-of and ?? to hermes stable (31375f7)</li> <li><strong>[Feature]</strong> Set app name for React Native Experimental Debug Connection (3aca116)</li> <li><strong>[Feature]</strong> Infer the name "default" for anonymous exports (af23a1b)</li> <li><strong>[Fix]</strong> Disable fileName moduleId parsing for non-legacy source maps (e473e93)</li> <li><strong>[Fix]</strong> Format log messages using printf format (f2b3485)</li> <li><strong>[Fix]</strong> Fix scope of function declaration binding in constant folding (150d13e)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="20e4480f9e"><code>20e4480</code></a> Bump metro to 0.66.0</li> <li><a href="7ad7560e33"><code>7ad7560</code></a> Optionally accept a SourceURL parameter for debug builds</li> <li><a href="af23a1b27b"><code>af23a1b</code></a> Infer the name "default" for anonymous exports</li> <li><a href="31375f7604"><code>31375f7</code></a> Move for-of and ?? to hermes stable</li> <li><a href="3aca116973"><code>3aca116</code></a> Set app name for React Native Experimental Debug Connection</li> <li><a href="4bd9e40297"><code>4bd9e40</code></a> Deploy v0.148.0 to xplat</li> <li><a href="54bcce22c6"><code>54bcce2</code></a> Backout for-of and canary ??</li> <li><a href="f66d6e37f2"><code>f66d6e3</code></a> Canary Hermes for-of</li> <li><a href="17d4761946"><code>17d4761</code></a> Clean up redundant experimental flowconfig options</li> <li><a href="0b4f46c064"><code>0b4f46c</code></a> Update troubleshooting docs for metro cache tmpdir (<a href="https://github-redirect.dependabot.com/facebook/metro/issues/642">https://github.com/facebook/flipper/issues/642</a>)</li> <li>Additional commits viewable in <a href="https://github.com/facebook/metro/compare/v0.65.2...v0.66.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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 - `dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Pull Request resolved: https://github.com/facebook/flipper/pull/2399 Reviewed By: nikoant Differential Revision: D28795378 Pulled By: passy fbshipit-source-id: b32069ecdbd4f54fd3655b709b994eb0148d04af
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "flipper-pkg-lib",
|
|
"version": "0.0.0",
|
|
"description": "Library for building and publishing Flipper plugins",
|
|
"repository": "facebook/flipper",
|
|
"main": "lib/index.js",
|
|
"flipperBundlerEntry": "src",
|
|
"types": "lib/index.d.ts",
|
|
"license": "MIT",
|
|
"bugs": "https://github.com/facebook/flipper/issues",
|
|
"dependencies": {
|
|
"flipper-babel-transformer": "0.0.0",
|
|
"flipper-plugin-lib": "0.0.0",
|
|
"fs-extra": "^10.0.0",
|
|
"metro": "^0.66.0",
|
|
"metro-cache": "^0.66.0",
|
|
"metro-minify-terser": "^0.66.0",
|
|
"npm-packlist": "^2.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^9.0.11",
|
|
"@types/jest": "^26.0.23",
|
|
"@types/node": "^15.6.1",
|
|
"flipper-test-utils": "0.0.0",
|
|
"globby": "^11.0.3",
|
|
"jest": "^26.6.3",
|
|
"mock-fs": "^4.14.0",
|
|
"prettier": "^2.3.0",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^26.5.6",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.2.4"
|
|
},
|
|
"scripts": {
|
|
"reset": "rimraf lib *.tsbuildinfo",
|
|
"build": "tsc -b",
|
|
"prepack": "yarn reset && yarn build"
|
|
},
|
|
"files": [
|
|
"lib/**/*"
|
|
],
|
|
"homepage": "https://github.com/facebook/flipper",
|
|
"keywords": [
|
|
"Flipper"
|
|
],
|
|
"author": "Facebook, Inc"
|
|
}
|