jstransformer
Advanced tools
Comparing version 0.0.4 to 1.0.0
@@ -5,5 +5,8 @@ # Change Log | ||
## [Unreleased][unreleased] | ||
## [1.0.0] - 2016-06-06 | ||
### Changed | ||
- Browser support is fixed | ||
- Marked as stable | ||
## [0.0.4][0.0.4] | ||
## [0.0.4] - 2015-11-23 | ||
### Changed | ||
@@ -33,5 +36,5 @@ - Switched to [Keep a Changelog](http://keepachangelog.com/) spec for CHANGELOG.md | ||
[unreleased]: https://github.com/jstransformers/jstransformer/compare/0.0.4...HEAD | ||
[1.0.0]: https://github.com/jstransformers/jstransformer/compare/0.0.4...1.0.0 | ||
[0.0.4]: https://github.com/jstransformers/jstransformer/compare/0.0.3...0.0.4 | ||
[0.0.3]: https://github.com/jstransformers/jstransformer/compare/0.0.2...0.0.3 | ||
[0.0.2]: https://github.com/jstransformers/jstransformer/compare/0.0.1...0.0.2 |
@@ -16,4 +16,9 @@ 'use strict'; | ||
tr.normalizeAsync = normalizeAsync; | ||
tr.readFile = Promise.denodeify(fs.readFile); | ||
tr.readFileSync = fs.readFileSync; | ||
if (fs.readFile) { | ||
tr.readFile = Promise.denodeify(fs.readFile); | ||
tr.readFileSync = fs.readFileSync; | ||
} else { | ||
tr.readFile = function () { throw new Error('fs.readFile unsupported'); }; | ||
tr.readFileSync = function () { throw new Error('fs.readFileSync unsupported'); }; | ||
} | ||
@@ -20,0 +25,0 @@ function normalizeFn(result) { |
{ | ||
"name": "jstransformer", | ||
"version": "0.0.4", | ||
"version": "1.0.0", | ||
"description": "Normalize the API of any jstransformer", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
21196
344
1
1