Socket
Socket
Sign inDemoInstall

metro

Package Overview
Dependencies
201
Maintainers
2
Versions
152
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.80.0 to 0.80.1

34

package.json
{
"name": "metro",
"version": "0.80.0",
"version": "0.80.1",
"description": "🚇 The JavaScript bundler for React Native.",

@@ -31,3 +31,3 @@ "main": "src/index.js",

"graceful-fs": "^4.2.4",
"hermes-parser": "0.17.0",
"hermes-parser": "0.17.1",
"image-size": "^1.0.2",

@@ -38,15 +38,15 @@ "invariant": "^2.2.4",

"lodash.throttle": "^4.1.1",
"metro-babel-transformer": "0.80.0",
"metro-cache": "0.80.0",
"metro-cache-key": "0.80.0",
"metro-config": "0.80.0",
"metro-core": "0.80.0",
"metro-file-map": "0.80.0",
"metro-minify-terser": "0.80.0",
"metro-resolver": "0.80.0",
"metro-runtime": "0.80.0",
"metro-source-map": "0.80.0",
"metro-symbolicate": "0.80.0",
"metro-transform-plugins": "0.80.0",
"metro-transform-worker": "0.80.0",
"metro-babel-transformer": "0.80.1",
"metro-cache": "0.80.1",
"metro-cache-key": "0.80.1",
"metro-config": "0.80.1",
"metro-core": "0.80.1",
"metro-file-map": "0.80.1",
"metro-minify-terser": "0.80.1",
"metro-resolver": "0.80.1",
"metro-runtime": "0.80.1",
"metro-source-map": "0.80.1",
"metro-symbolicate": "0.80.1",
"metro-transform-plugins": "0.80.1",
"metro-transform-worker": "0.80.1",
"mime-types": "^2.1.27",

@@ -72,4 +72,4 @@ "node-fetch": "^2.2.0",

"jest-snapshot-serializer-raw": "^1.2.0",
"metro-babel-register": "0.80.0",
"metro-memory-fs": "0.80.0",
"metro-babel-register": "0.80.1",
"metro-memory-fs": "0.80.1",
"mock-req": "^0.2.0",

@@ -76,0 +76,0 @@ "mock-res": "^0.6.0",

@@ -38,2 +38,3 @@ /**

workerPath: _workerPath,
unstable_workerThreads: _workerThreads,
...transformerConfig

@@ -40,0 +41,0 @@ } = this._config.transformer;

@@ -86,2 +86,3 @@ /**

exposedMethods,
enableWorkerThreads: this._config.transformer.unstable_workerThreads,
forkOptions: {

@@ -88,0 +89,0 @@ env,

@@ -64,3 +64,5 @@ /**

protocol:
platform != null && platform.match(/^(android|ios|vr)$/) ? "http" : "",
platform != null && platform.match(/^(android|ios|vr|windows|macos)$/)
? "http"
: "",
pathname: pathname.replace(/\.(bundle|delta)$/, ".map"),

@@ -67,0 +69,0 @@ }),

@@ -21,3 +21,9 @@ /**

}
const baseIgnoredInlineRequires = ["React", "react", "react-native"];
const baseIgnoredInlineRequires = [
"React",
"react",
"react/jsx-dev-runtime",
"react/jsx-runtime",
"react-native",
];
async function calcTransformerOptions(

@@ -24,0 +30,0 @@ entryFiles,

@@ -113,2 +113,3 @@ "use strict";

enableSymlinks: config.resolver.unstable_enableSymlinks,
enableWorkerThreads: config.watcher.unstable_workerThreads,
extensions: Array.from(

@@ -115,0 +116,0 @@ new Set([

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc