Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rcedit

Package Overview
Dependencies
Maintainers
2
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rcedit - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

4

lib/rcedit.js

@@ -1,2 +0,2 @@

const { canRunWindowsExeNatively, spawnExe } = require('cross-spawn-windows-exe')
const { canRunWindowsExeNatively, is64BitArch, spawnExe } = require('cross-spawn-windows-exe')
const path = require('path')

@@ -9,3 +9,3 @@

module.exports = async (exe, options) => {
const rceditExe = process.arch === 'x64' ? 'rcedit-x64.exe' : 'rcedit.exe'
const rceditExe = is64BitArch(process.arch) ? 'rcedit-x64.exe' : 'rcedit.exe'
const rcedit = path.resolve(__dirname, '..', 'bin', rceditExe)

@@ -12,0 +12,0 @@ const args = [exe]

{
"name": "rcedit",
"version": "3.0.0",
"version": "3.0.1",
"description": "Node module to edit resources of exe",

@@ -28,3 +28,3 @@ "main": "lib/rcedit.js",

"dependencies": {
"cross-spawn-windows-exe": "^1.0.0"
"cross-spawn-windows-exe": "^1.1.0"
},

@@ -31,0 +31,0 @@ "devDependencies": {

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