event-emitter-grouped
Advanced tools
Comparing version 4.7.0 to 4.8.0-next.1592692166.4114017f06bc07d07b9b2ddaa3fc0cebce2fd63c
# History | ||
## v4.8.0 2020 June 21 | ||
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation) | ||
## v4.7.0 2020 June 20 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"title": "Event Emitter Grouped", | ||
"name": "event-emitter-grouped", | ||
"version": "4.7.0", | ||
"version": "4.8.0-next.1592692166.4114017f06bc07d07b9b2ddaa3fc0cebce2fd63c", | ||
"description": "Emit events in serial or parallel with support for synchronous and asynchronous listeners", | ||
@@ -113,45 +113,45 @@ "homepage": "https://github.com/bevry/event-emitter-grouped", | ||
"dependencies": { | ||
"taskgroup": "^7.8.0", | ||
"unbounded": "^3.5.0" | ||
"editions": "3.5.0", | ||
"taskgroup": "7.7.0", | ||
"unbounded": "3.4.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.10.3", | ||
"@babel/core": "^7.10.3", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.10.3", | ||
"@babel/preset-env": "^7.10.3", | ||
"@bevry/update-contributors": "^1.10.0", | ||
"assert-helpers": "^6.10.0", | ||
"@babel/core": "^7.7.5", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.9.5", | ||
"@babel/preset-env": "^7.7.6", | ||
"@bevry/update-contributors": "1.9.0", | ||
"assert-helpers": "6.8.0", | ||
"eslint": "^7.3.0", | ||
"eslint-config-bevry": "^3.9.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-config-bevry": "3.8.0", | ||
"eslint-config-prettier": "^6.7.0", | ||
"eslint-plugin-babel": "^5.3.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"jsdoc": "^3.6.4", | ||
"kava": "^5.5.0", | ||
"minami": "^1.2.3", | ||
"kava": "5.4.0", | ||
"prettier": "^2.0.5", | ||
"projectz": "^2.7.0", | ||
"projectz": "2.5.0", | ||
"surge": "^0.21.3", | ||
"valid-directory": "^2.4.0" | ||
"valid-directory": "2.2.0" | ||
}, | ||
"scripts": { | ||
"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next", | ||
"our:compile": "npm run our:compile:edition-browsers", | ||
"our:compile": "yarn run our:compile:edition-browsers", | ||
"our:compile:edition-browsers": "env BABEL_ENV=edition-browsers babel --out-dir ./edition-browsers ./source", | ||
"our:deploy": "echo no need for this project", | ||
"our:meta": "npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz", | ||
"our:meta": "yarn run our:meta:contributors && yarn run our:meta:docs && yarn run our:meta:projectz", | ||
"our:meta:contributors": "update-contributors", | ||
"our:meta:docs": "npm run our:meta:docs:jsdoc", | ||
"our:meta:docs:jsdoc": "rm -Rf ./docs && jsdoc --recurse --pedantic --access all --destination ./docs --package ./package.json --readme ./README.md --template ./node_modules/minami ./source && mv ./docs/$npm_package_name/$npm_package_version/* ./docs/ && rm -Rf ./docs/$npm_package_name/$npm_package_version", | ||
"our:meta:docs": "yarn run our:meta:docs:jsdoc", | ||
"our:meta:docs:jsdoc": "rm -Rf ./docs && jsdoc --recurse --pedantic --access all --destination ./docs --package ./package.json --readme ./README.md ./source && mv ./docs/$npm_package_name/$npm_package_version/* ./docs/ && rm -Rf ./docs/$npm_package_name/$npm_package_version", | ||
"our:meta:projectz": "projectz compile", | ||
"our:release": "npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push", | ||
"our:release": "yarn run our:release:prepare && yarn run our:release:check-changelog && yarn run our:release:check-dirty && yarn run our:release:tag && yarn run our:release:push", | ||
"our:release:check-changelog": "cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)", | ||
"our:release:check-dirty": "git diff --exit-code", | ||
"our:release:prepare": "npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta", | ||
"our:release:prepare": "yarn run our:clean && yarn run our:compile && yarn run our:test && yarn run our:meta", | ||
"our:release:push": "git push origin master && git push origin --tags", | ||
"our:release:tag": "export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"", | ||
"our:setup": "npm run our:setup:install", | ||
"our:setup:install": "npm install", | ||
"our:test": "npm run our:verify && npm test", | ||
"our:verify": "npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier", | ||
"our:setup": "yarn run our:setup:install", | ||
"our:setup:install": "/usr/local/bin/yarn install --ignore-engines", | ||
"our:test": "yarn run our:verify && yarn test", | ||
"our:verify": "yarn run our:verify:directory && yarn run our:verify:eslint && yarn run our:verify:prettier", | ||
"our:verify:directory": "valid-directory", | ||
@@ -158,0 +158,0 @@ "our:verify:eslint": "eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source", |
@@ -111,3 +111,3 @@ <!-- TITLE/ --> | ||
<script type="module"> | ||
import * as pkg from '//dev.jspm.io/event-emitter-grouped@4.7.0' | ||
import * as pkg from '//dev.jspm.io/event-emitter-grouped@4.8.0' | ||
</script> | ||
@@ -114,0 +114,0 @@ ``` |
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
36598
17
3
1
+ Addededitions@3.5.0
+ Addededitions@3.5.0(transitive)
+ Addederrlop@3.17.0(transitive)
+ Addedsemver@6.3.0(transitive)
+ Addedtaskgroup@7.7.0(transitive)
+ Addedunbounded@3.4.0(transitive)
- Removedsemver@6.3.1(transitive)
- Removedtaskgroup@7.20.0(transitive)
- Removedunbounded@3.16.0(transitive)
Updatedtaskgroup@7.7.0
Updatedunbounded@3.4.0