gengojs-core-modules
Advanced tools
Comparing version 2.0.6 to 2.0.7
@@ -0,1 +1,10 @@ | ||
2.0.6 / 2015-10-05 | ||
================== | ||
* Release v2.0.6. | ||
* Update | ||
Updated change log. | ||
* Fix | ||
Fixed [#1](https://github.com/gengojs/gengojs-core-modules/issues/1). | ||
2.0.5 / 2015-10-04 | ||
@@ -2,0 +11,0 @@ ================== |
import _ from 'lodash'; | ||
import debug from 'gengojs-debug'; | ||
var log = debug('core'); | ||
const log = debug('core'); | ||
/** | ||
@@ -5,0 +6,0 @@ * This class extracts the input and seperates the arguments |
import debug from 'gengojs-debug'; | ||
import _ from 'lodash'; | ||
import Extractify from './extractify'; | ||
var log = debug('core'); | ||
const log = debug('core'); | ||
/* | ||
@@ -6,0 +8,0 @@ ## Input |
@@ -1,4 +0,1 @@ | ||
/** | ||
* This module reads or sets the initial options | ||
*/ | ||
import _ from 'lodash'; | ||
@@ -9,3 +6,4 @@ import path from 'path'; | ||
import debug from 'gengojs-debug'; | ||
let log = debug('core'); | ||
const log = debug('core'); | ||
/* | ||
@@ -12,0 +10,0 @@ ## Options |
import _ from 'lodash'; | ||
import debug from 'gengojs-debug'; | ||
import 'sugar'; | ||
let log = debug('core'); | ||
@@ -46,5 +48,5 @@ /** | ||
// Set the default options by merging with user's | ||
_.merge(options, { | ||
Object.merge(options, { | ||
[type]: defaults | ||
}, options); | ||
}, true); | ||
} | ||
@@ -51,0 +53,0 @@ /** |
import _ from 'lodash'; | ||
import debug from 'gengojs-debug'; | ||
let log = debug('core'); | ||
const log = debug('core'); | ||
/** | ||
@@ -5,0 +6,0 @@ * This class detects the server |
{ | ||
"name": "gengojs-core-modules", | ||
"version": "2.0.6", | ||
"version": "2.0.7", | ||
"description": "gengo.js core modules is a set of modules that helps the core to function properly.", | ||
@@ -50,4 +50,5 @@ "main": "src/modules/index.js", | ||
"js-yaml": "^3.4.0", | ||
"lodash": "^3.10.1" | ||
"lodash": "^3.10.1", | ||
"sugar": "^1.4.1" | ||
} | ||
} |
@@ -1,4 +0,1 @@ | ||
/** | ||
* This module reads or sets the initial options | ||
*/ | ||
'use strict'; | ||
@@ -5,0 +2,0 @@ |
@@ -23,2 +23,4 @@ 'use strict'; | ||
require('sugar'); | ||
var log = (0, _gengojsDebug2['default'])('core'); | ||
@@ -81,3 +83,3 @@ /** | ||
// Set the default options by merging with user's | ||
_lodash2['default'].merge(options, _defineProperty({}, type, defaults), options); | ||
Object.merge(options, _defineProperty({}, type, defaults), true); | ||
} | ||
@@ -84,0 +86,0 @@ |
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
97054
4
1723
+ Addedsugar@^1.4.1
+ Addedsugar@1.5.0(transitive)