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

embark-solc

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

embark-solc - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

0

index.js

@@ -0,0 +0,0 @@ /*global require, module*/

12

lib/Compiler.js

@@ -29,2 +29,10 @@ const async = require('async');

}
const solc = shelljs.which('solc');
if (!solc) {
logger.warn('solc is not installed on your machine');
logger.info('You can install it by following the instructions on: http://solidity.readthedocs.io/en/latest/installing-solidity.html');
process.exit();
}
logger.info("compiling solidity contracts with command line solc...");

@@ -39,4 +47,6 @@ let compiled_object = {};

let json = JSON.parse(compileString);
let jsonStart = compileString.indexOf("\"contracts\":{");
let json = JSON.parse(compileString.substr(jsonStart - 1));
for (let contractFile in json.contracts) {

@@ -43,0 +53,0 @@ let className = contractFile.substr( contractFile.indexOf(":") + 1);

2

package.json
{
"name": "embark-solc",
"version": "0.0.5",
"version": "0.0.6",
"description": "Solc plugin for Embark (uses command line)",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -1,5 +0,5 @@

Embark-Bamboo
Embark-Solc
======
Plugin for [Embark](https://github.com/embark-framework/embark) to compile contracts using solc command
Plugin for [Embark](https://github.com/embark-framework/embark) to compile contracts using solc

@@ -6,0 +6,0 @@ Installation

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