Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

haraka-config

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

haraka-config - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

.codeclimate.yml

4

Changes.md
# 1.0.7 - 2016-11-17
* update tests for appveyor (Windows) compatibility #9
# 1.0.6 - 2016-11-10

@@ -3,0 +7,0 @@

4

package.json

@@ -6,3 +6,3 @@ {

"description": "Haraka's config file loader",
"version": "1.0.6",
"version": "1.0.7",
"homepage": "http://haraka.github.io",

@@ -15,3 +15,3 @@ "repository": {

"engines": {
"node": ">= 0.12.16"
"node": ">= 4"
},

@@ -18,0 +18,0 @@ "dependencies": {

[![Build Status][ci-img]][ci-url]
[![Coverage Status][cov-img]][cov-url]
[![Code Climate][clim-img]][clim-url]
[![Windows Build status][apv-img]][apv-url]

@@ -289,1 +291,5 @@ # haraka-config

[cov-url]: https://codecov.io/github/haraka/haraka-config?branch=master
[clim-img]: https://codeclimate.com/github/haraka/haraka-config/badges/gpa.svg
[clim-url]: https://codeclimate.com/github/haraka/haraka-config
[apv-img]: https://ci.appveyor.com/api/projects/status/lme4otppxe22me0j/branch/master?svg=true
[apv-url]: https://ci.appveyor.com/project/msimerson/haraka-config/branch/master

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

test.expect(1);
test.ok(/haraka\-config\/test\/config$/.test(this.config.root_path));
test.equal(path.resolve('test','config'), this.config.root_path);
test.done();

@@ -40,4 +40,4 @@ },

var c = this.config.module_config('foo', 'bar');
test.equal(c.root_path, 'foo/config');
test.equal(c.overrides_path, 'bar/config');
test.equal(c.root_path, path.join('foo','config'));
test.equal(c.overrides_path, path.join('bar','config'));
test.done();

@@ -54,3 +54,3 @@ },

// console.log(config);
test.equal(config.root_path, '/tmp/config');
test.equal(config.root_path, path.join('/tmp','config'));
test.done();

@@ -57,0 +57,0 @@ },

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