Socket
Socket
Sign inDemoInstall

node-elm-compiler

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-elm-compiler - npm Package Compare versions

Comparing version 4.0.1 to 4.0.2

2

index.js

@@ -103,3 +103,3 @@ 'use strict';

return _.contains(knownDependencies, result) ? null : result;
return _.includes(knownDependencies, result) ? null : result;
} else {

@@ -106,0 +106,0 @@ return null;

{
"name": "node-elm-compiler",
"version": "4.0.1",
"version": "4.0.2",
"description": "A Node.js interface to the Elm compiler binaries. Supports Elm version 0.17",

@@ -28,4 +28,4 @@ "main": "index.js",

"dependencies": {
"cross-spawn": "2.1.0",
"lodash": "3.10.1",
"cross-spawn": "4.0.0",
"lodash": "4.13.1",
"temp": "^0.8.3"

@@ -35,6 +35,6 @@

"devDependencies": {
"chai": "3.4.1",
"chai": "3.5.0",
"chai-spies": "0.7.1",
"mocha": "2.3.4"
"mocha": "2.5.3"
}
}

@@ -67,4 +67,4 @@ var chai = require("chai")

describe("#compileToString", function() {
// Use a timeout of 5 minutes because Travis on Linux can be SUPER slow.
this.timeout(300000);
// Use an epic timeout because Travis on Linux can be SUPER slow.
this.timeout(600000);

@@ -71,0 +71,0 @@ it("works with --yes", function () {

@@ -96,8 +96,3 @@ var fs = require("fs");

errorMessage += "\n\nTry adding something like";
errorMessage += `
port foo : Value
port foo =
someValue
to ${moduleName}!
`;
errorMessage += "port foo : Value\nport foo =\n someValue\n\nto " + moduleName + "!";

@@ -104,0 +99,0 @@ return errorMessage.trim();

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