New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

node-sword-interface

Package Overview
Dependencies
Maintainers
1
Versions
365
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-sword-interface - npm Package Compare versions

Comparing version
1.0.117
to
1.0.118
+1
-1
package.json
{
"name": "node-sword-interface",
"version": "1.0.117",
"version": "1.0.118",
"description": "Javascript (N-API) interface to SWORD library",

@@ -5,0 +5,0 @@ "keywords": [

@@ -136,1 +136,10 @@ #!/bin/sh

make -j8 sword_static
# For iOS: remove SWORD's bundled minizip objects from libsword.a to avoid
# duplicate symbols when -all_load is used in the dylib link step.
if [ "$1" = "--ios" ] ; then
echo "-- Stripping SWORD's bundled minizip objects from libsword.a"
ar -t libsword.a | grep -iE 'unzip|ioapi' | while IFS= read -r obj; do
ar -d libsword.a "$obj"
done
fi

Sorry, the diff of this file is not supported yet