Comparing version 2.1.0 to 3.0.0
@@ -30,1 +30,10 @@ # Changelog | ||
* `.getNewLibraryCopy()` method (was `.clone()`) | ||
## 3.0.0 | ||
* Remove `.clone()` method | ||
* Pin `bluebird` dependency to trigger a PR from `greenkeeper` whenever new version released | ||
* Travis CI runs on all branches (to allow `greenkeeper` to trigger Travis) | ||
* Travis CI does not run on tags | ||
* Tidy npm scripts | ||
* Update dev dependencies |
@@ -19,7 +19,2 @@ /* | ||
Bluebird.clone = function() { | ||
console.warn('`.clone()` method is deprecated and will be removed in v3.0.0. Use `.getNewLibraryCopy()` instead'); | ||
return getNewLibraryCopy(); | ||
}; | ||
if (!Bluebird.version) Bluebird.version = bluebirdVersion; | ||
@@ -26,0 +21,0 @@ return Bluebird; |
{ | ||
"name": "bluebird2", | ||
"version": "2.1.0", | ||
"version": "3.0.0", | ||
"description": "bluebird v2.x", | ||
@@ -17,10 +17,10 @@ "main": "./lib/", | ||
"dependencies": { | ||
"bluebird": "^2.10.2" | ||
"bluebird": "2.10.2" | ||
}, | ||
"devDependencies": { | ||
"mocha": "^2.5.3", | ||
"mocha": "^3.0.1", | ||
"chai": "^3.5.0", | ||
"jshint": "^2.9.2", | ||
"istanbul": "^0.4.3", | ||
"coveralls": "^2.11.9" | ||
"istanbul": "^0.4.4", | ||
"coveralls": "^2.11.12" | ||
}, | ||
@@ -31,8 +31,9 @@ "keywords": [ | ||
"scripts": { | ||
"test": "if [ $COVERAGE ]; then npm run coveralls; else npm run jshint && npm run test-main; fi", | ||
"jshint": "./node_modules/.bin/jshint lib test", | ||
"test-main": "./node_modules/mocha/bin/mocha --check-leaks --colors -t 10000 --reporter spec 'test/**/*.test.js'", | ||
"test": "npm run jshint && npm run test-main", | ||
"jshint": "jshint lib test", | ||
"test-main": "mocha --check-leaks --colors -t 10000 --reporter spec 'test/**/*.test.js'", | ||
"cover": "npm run cover-main && rm -rf coverage", | ||
"coveralls": "npm run cover-main && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage", | ||
"cover-main": "COVERAGE=true ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec 'test/**/*.test.js'" | ||
"coveralls": "npm run cover-main && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage", | ||
"cover-main": "COVERAGE=true istanbul cover _mocha --report lcovonly -- -R spec 'test/**/*.test.js'", | ||
"travis": "if [ $COVERAGE ]; then npm run coveralls; else npm run test; fi" | ||
}, | ||
@@ -39,0 +40,0 @@ "engines": { |
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
5951
5
1
69
9
19
+ Addedbluebird@2.10.2(transitive)
- Removedbluebird@2.11.0(transitive)
Updatedbluebird@2.10.2