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.0 to 4.0.1

2

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

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

@@ -17,2 +17,6 @@ # node-elm-compiler [![Version](https://img.shields.io/npm/v/node-elm-compiler.svg)](https://www.npmjs.com/package/node-elm-compiler) [![Travis build Status](https://travis-ci.org/rtfeldman/node-elm-compiler.svg?branch=master)](http://travis-ci.org/rtfeldman/node-elm-compiler) [![AppVeyor build status](https://ci.appveyor.com/api/projects/status/xv83jcomgb81i1iu/branch/master?svg=true)](https://ci.appveyor.com/project/rtfeldman/node-elm-compiler/branch/master)

## 4.0.1
Fix missing `temp` dependency.
## 4.0.0

@@ -19,0 +23,0 @@

@@ -137,3 +137,3 @@ var chai = require("chai")

it("works with BasicWorker.elm", function (done) {
it("works with BasicWorker.elm", function() {
var opts = {

@@ -153,9 +153,5 @@ yes: true,

expect(str).to.equal("it's alive!");
done();
});
})
.catch(function (err) {
throw(err);
})
});
});
var fs = require("fs");
var tmp = require("tmp");
var temp = require("temp").track();
var path = require("path");

@@ -61,3 +61,3 @@ var jsEmitterFilename = "emitter.js";

return new Promise(function (resolve, reject) {
tmp.dir(function (err, tmpDirPath) {
temp.mkdir("node-elm-compiler", function (err, tmpDirPath) {
if (err) {

@@ -64,0 +64,0 @@ reject(err);

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