New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

confort

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

confort - npm Package Compare versions

Comparing version

to
0.1.4-rc1

0

CHANGELOG.md

@@ -0,0 +0,0 @@ # Confort Changelog

17

lib/conf-loader.js
const fs = require('fs');
const path = require('path');
const TOML = require('toml');
const YAML = require('yaml');
const CSON = require('cson-parser');
const assert = require('assert');
let CSON, YAML, TOML;
const libs = {
toml: () => TOML = require('toml'),
yaml: () => YAML = require('yaml'),
cson: () => CSON = require('cson-parser')
};
const loaders = {

@@ -16,2 +21,8 @@ toml: conf => TOML.parse(fs.readFileSync(conf)),

for(let ext in libs)
try{
libs[ext]();
}
catch(err){}
module.exports = function loadConf(conf){

@@ -18,0 +29,0 @@ assert.strictEqual(typeof conf, 'string');

6

package.json
{
"name": "confort",
"version": "0.1.3",
"version": "0.1.4-rc1",
"description": "A library for incrementally build config objects through layering config files in many formats.",

@@ -33,4 +33,6 @@ "main": "lib/main.js",

"dependencies": {
"deepmerge": "^4.0.0"
},
"devDependencies": {
"cson-parser": "^4.0.2",
"deepmerge": "^4.0.0",
"toml": "^3.0.0",

@@ -37,0 +39,0 @@ "yaml": "^1.7.0"

@@ -0,0 +0,0 @@ # [Confort](https://gitlab.com/GCSBOSS/confort)

{
"key": "value"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet