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 2.0.0 to 2.1.0

bin/rcedit-x64.exe

4

lib/rcedit.js

@@ -9,3 +9,3 @@ const path = require('path')

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

@@ -39,3 +39,3 @@

args.unshift(rcedit)
rcedit = 'wine'
rcedit = process.arch === 'x64' ? 'wine64' : 'wine'
// Suppress "fixme:" stderr log messages

@@ -42,0 +42,0 @@ spawnOptions.env.WINEDEBUG = '-all'

{
"name": "rcedit",
"version": "2.0.0",
"version": "2.1.0",
"description": "Node module to edit resources of exe",

@@ -5,0 +5,0 @@ "main": "lib/rcedit.js",

# node-rcedit
[![CircleCI build status](https://circleci.com/gh/electron/node-rcedit/tree/master.svg?style=svg)](https://circleci.com/gh/electron/node-rcedit/tree/master)
[![AppVeyor build status](https://ci.appveyor.com/api/projects/status/m880ovvfwukowyne/branch/master?svg=true)](https://ci.appveyor.com/project/electron-bot/node-rcedit/branch/master)

@@ -6,0 +5,0 @@ Node module to edit resources of Windows executables.

@@ -9,2 +9,2 @@ # Support for `node-rcedit`

environment variable to `rcedit`, and it will print out information, including any `STDERR` output
from `rcedit.exe`.
from `rcedit.exe`/`rcedit-x64.exe`.

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc