New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-native-repackager

Package Overview
Dependencies
Maintainers
4
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-repackager - npm Package Compare versions

Comparing version 0.1.4 to 0.1.5

8

package.json
{
"name": "react-native-repackager",
"version": "0.1.4",
"version": "0.1.5",
"description": "Custom extension for react-native packager",

@@ -23,5 +23,7 @@ "license": "MIT",

"scripts": {
"test": ":",
"postinstall": "node ./repackager.js"
"test": ":"
},
"bin": {
"repackager": "./repackager.js"
},
"dependencies": {

@@ -28,0 +30,0 @@ "shell-utils": "1.x.x",

@@ -0,1 +1,3 @@

#!/usr/bin/env node
const exec = require('shell-utils').exec;

@@ -9,2 +11,4 @@ const fs = require('fs');

const shouldSetup = _.includes(process.argv, 'setup');
run();

@@ -14,4 +18,6 @@

assertRN44();
console.log(`injecting support for --customExtensions`);
exec.execSync(`git apply --verbose --no-index --directory ${reactNativeDir} ${scriptDir}/rn44PackagerCustomExtensions.patch`);
if (shouldSetup) {
console.log(`injecting support for --customExtensions`);
exec.execSync(`git apply --verbose --no-index --directory ${reactNativeDir} ${scriptDir}/rn44PackagerCustomExtensions.patch`);
}
}

@@ -18,0 +24,0 @@

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc