arrayiffy-if-string
Advanced tools
Comparing version 3.1.1 to 3.2.0
@@ -8,2 +8,9 @@ # Change Log | ||
## [3.2.0] - 2018-05-14 | ||
### Improved | ||
* ✨ Now pointing unit tests at ES Modules build, not CommonJS-one. This means, unit test coverage will be correct (higher) because there won't be any missing rows that Babel added which are impossible to cover. | ||
* ✨ Tweaks to ava [config](https://github.com/avajs/ava/blob/master/docs/recipes/es-modules.md) in `package.json`, properly enabling the `dev` Rollup builds. | ||
## [3.1.0] - 2018-04-29 | ||
@@ -32,1 +39,2 @@ | ||
[3.1.0]: https://github.com/codsen/arrayiffy-if-string/compare/v3.0.6...v3.1.0 | ||
[3.2.0]: https://github.com/codsen/arrayiffy-if-string/compare/v3.1.1...v3.2.0 |
{ | ||
"name": "arrayiffy-if-string", | ||
"version": "3.1.1", | ||
"version": "3.2.0", | ||
"description": "Put non-empty strings into arrays, turn empty-ones into empty arrays. Bypass everything else.", | ||
@@ -35,5 +35,9 @@ "license": "MIT", | ||
"pretest": "npm run build", | ||
"test": "./node_modules/.bin/eslint src/*.js test/*.js && nyc --reporter=html --reporter=text ava" | ||
"test": "./node_modules/.bin/eslint src/*.js test/*.js && nyc --require esm --reporter=html --reporter=text ava" | ||
}, | ||
"ava": { | ||
"compileEnhancements": false, | ||
"require": [ | ||
"esm" | ||
], | ||
"verbose": true | ||
@@ -46,2 +50,6 @@ }, | ||
}, | ||
"esm": { | ||
"await": true, | ||
"cjs": true | ||
}, | ||
"keywords": [ | ||
@@ -157,2 +165,3 @@ "arrayiffy", | ||
"eslint-plugin-prettier": "^2.6.0", | ||
"esm": "latest", | ||
"husky": "latest", | ||
@@ -167,4 +176,4 @@ "nyc": "latest", | ||
"rollup-plugin-uglify": "^3.0.0", | ||
"uglify-es": "^3.3.9" | ||
"uglify-es": "^3.3.10" | ||
} | ||
} |
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
13359
19