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

app-conf

Package Overview
Dependencies
Maintainers
2
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

app-conf - npm Package Compare versions

Comparing version 0.4.1 to 0.5.0

4

entries.js

@@ -7,5 +7,5 @@ 'use strict'

var fs$readFile = require('fs-promise').readFile
var fs$readFile = Bluebird.promisify(require('fs').readFile)
var j = require('path').join
var realpath = require('fs-promise').realpath
var realpath = Bluebird.promisify(require('fs').realpath)
var resolvePath = require('path').resolve

@@ -12,0 +12,0 @@

@@ -5,7 +5,8 @@ 'use strict'

var Bluebird = require('bluebird')
var dirname = require('path').dirname
var getFileStats = require('fs-promise').stat
var getFileStats = Bluebird.promisify(require('fs').stat)
var resolvePath = require('path').resolve
var Bluebird = require('bluebird')
var debug = require('debug')('app-conf')

@@ -80,3 +81,3 @@ var flatten = require('lodash/flatten')

name: name,
appDir: opts && opts.appDir || DEFAULT_APP_DIR
appDir: (opts && opts.appDir) || DEFAULT_APP_DIR
})

@@ -83,0 +84,0 @@ }).then(flatten).each(function (file) {

{
"name": "app-conf",
"version": "0.4.1",
"version": "0.5.0",
"description": "",

@@ -19,6 +19,6 @@ "keywords": [],

"devDependencies": {
"mocha": "^3.0.0",
"mock-fs": "^3.11.0",
"mocha": "^3.4.2",
"mock-fs": "^4.4.1",
"must": "^0.13.1",
"standard": "^8.0.0"
"standard": "^10.0.2"
},

@@ -33,9 +33,8 @@ "files": [

"bluebird": "^3.4.0",
"debug": "^2.2.0",
"fs-promise": "^0.5.0",
"glob": "^7",
"debug": "^2.6.8",
"glob": "^7.1.2",
"lodash": "^4.13.1",
"make-error": "^1",
"xdg-basedir": "^2.0.0"
"make-error": "^1.3.0",
"xdg-basedir": "^3.0.0"
}
}

@@ -100,3 +100,3 @@ 'use strict'

if (!(buffer instanceof Buffer)) {
buffer = new Buffer(buffer)
buffer = Buffer.from(buffer)
}

@@ -103,0 +103,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