@cedx/enum
Advanced tools
Comparing version 1.3.0 to 2.0.0
# Changelog | ||
This file contains highlights of what changes on each version of the [Enums for JS](https://github.com/cedx/enum.js) library. | ||
## Version 2.0.0 | ||
- Breaking change: raised the required [Node.js](https://nodejs.org) version. | ||
- Breaking change: using ES2017 features, like async/await functions. | ||
- Improved the build system. | ||
- Ported the unit test assertions from [TDD](https://en.wikipedia.org/wiki/Test-driven_development) to [BDD](https://en.wikipedia.org/wiki/Behavior-driven_development). | ||
- Updated the package dependencies. | ||
## Version 1.3.0 | ||
@@ -5,0 +12,0 @@ - Updated the package dependencies. |
@@ -10,3 +10,3 @@ { | ||
"repository": "cedx/enum.js", | ||
"version": "1.3.0", | ||
"version": "2.0.0", | ||
@@ -17,6 +17,7 @@ "jsnext:main": "./src/index", | ||
"devDependencies": { | ||
"@cedx/coveralls": "^0.1.0", | ||
"@cedx/coveralls": "^0.2.0", | ||
"@cedx/gulp-david": "^4.0.0", | ||
"babel-preset-latest": "^6.22.0", | ||
"babel-register": "^6.22.0", | ||
"babel-register": "^6.23.0", | ||
"chai": "^3.5.0", | ||
"del": "^2.2.2", | ||
@@ -26,10 +27,9 @@ "esdoc": "^0.5.2", | ||
"gulp-babel": "^6.1.2", | ||
"gulp-istanbul": "^1.1.1", | ||
"gulp-eslint": "^3.0.1", | ||
"gulp-load-plugins": "^1.5.0", | ||
"gulp-mocha": "^3.0.1", | ||
"isparta": "^4.0.0" | ||
"mocha": "^3.2.0", | ||
"nyc": "^10.1.2" | ||
}, | ||
"engines": { | ||
"node": ">=6.9.0" | ||
"node": ">=7.6.0" | ||
}, | ||
@@ -46,4 +46,4 @@ "keywords": [ | ||
"prepublish": "gulp build", | ||
"test": "gulp test" | ||
"test": "nyc --report-dir=var --reporter=lcovonly mocha --compilers js:babel-register" | ||
} | ||
} |
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
20496