schema-utils
Advanced tools
Comparing version 0.4.6 to 0.4.7
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="0.4.7"></a> | ||
## [0.4.7](https://github.com/webpack-contrib/schema-utils/compare/v0.4.6...v0.4.7) (2018-08-07) | ||
### Bug Fixes | ||
* **src:** `node >= v4.0.0` support ([#32](https://github.com/webpack-contrib/schema-utils/issues/32)) ([cb13dd4](https://github.com/webpack-contrib/schema-utils/commit/cb13dd4)) | ||
<a name="0.4.6"></a> | ||
@@ -7,0 +17,0 @@ ## [0.4.6](https://github.com/webpack-contrib/schema-utils/compare/v0.4.5...v0.4.6) (2018-08-06) |
{ | ||
"name": "schema-utils", | ||
"version": "0.4.6", | ||
"version": "0.4.7", | ||
"description": "webpack Validation Utils", | ||
@@ -31,3 +31,3 @@ "main": "src/index.js", | ||
"eslint-plugin-prettier": "^2.0.0", | ||
"jest": "^22.0.0", | ||
"jest": "^21.0.0", | ||
"prettier": "^1.0.0", | ||
@@ -34,0 +34,0 @@ "standard-version": "^4.0.0" |
@@ -0,3 +1,9 @@ | ||
/* eslint-disable | ||
strict | ||
*/ | ||
'use strict'; | ||
const validateOptions = require('./validateOptions'); | ||
module.exports = validateOptions; |
/* eslint-disable | ||
strict, | ||
no-param-reassign | ||
*/ | ||
'use strict'; | ||
const fs = require('fs'); | ||
@@ -5,0 +9,0 @@ const path = require('path'); |
@@ -0,1 +1,7 @@ | ||
/* eslint-disable | ||
strict | ||
*/ | ||
'use strict'; | ||
class ValidationError extends Error { | ||
@@ -2,0 +8,0 @@ constructor(errors, name) { |
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
10673
50