🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

frack-settings

Package Overview
Dependencies
Maintainers
2
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

frack-settings - npm Package Compare versions

Comparing version

to
0.1.8

2

package.json
{
"name": "frack-settings",
"version": "0.1.7",
"version": "0.1.8",
"description": "Settings defaults and runtime loader from rc file",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -6,3 +6,3 @@ /* eslint-disable global-require */

import deepMerge from 'deepmerge'
import { existsSync } from 'fs'
import { readFileSync, existsSync } from 'fs'
import has from 'lodash/fp/has'

@@ -22,3 +22,4 @@ import { join } from 'path'

if (existsSync(frackRcPath)) {
const frackRc = require(frackRcPath)
/* eslint-disable no-eval */
const frackRc = eval(readFileSync(frackRcPath).toString())
const hasCommon = has('common')

@@ -25,0 +26,0 @@ const hasDevelopment = has('development')

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display