event-emitter-grouped
Advanced tools
Comparing version 4.0.0 to 4.1.0-next.1588596905.f9fd7accae0da4da94ee2367101e582d4aaa3ba8
@@ -44,7 +44,28 @@ 'use strict' // Import | ||
function _inherits(subClass, superClass) { | ||
if (typeof superClass !== 'function' && superClass !== null) { | ||
throw new TypeError('Super expression must either be null or a function') | ||
} | ||
subClass.prototype = Object.create(superClass && superClass.prototype, { | ||
constructor: { value: subClass, writable: true, configurable: true }, | ||
}) | ||
if (superClass) _setPrototypeOf(subClass, superClass) | ||
} | ||
function _setPrototypeOf(o, p) { | ||
_setPrototypeOf = | ||
Object.setPrototypeOf || | ||
function _setPrototypeOf(o, p) { | ||
o.__proto__ = p | ||
return o | ||
} | ||
return _setPrototypeOf(o, p) | ||
} | ||
function _createSuper(Derived) { | ||
var hasNativeReflectConstruct = _isNativeReflectConstruct() | ||
return function () { | ||
var Super = _getPrototypeOf(Derived), | ||
result | ||
if (_isNativeReflectConstruct()) { | ||
if (hasNativeReflectConstruct) { | ||
var NewTarget = _getPrototypeOf(this).constructor | ||
@@ -96,22 +117,2 @@ result = Reflect.construct(Super, arguments, NewTarget) | ||
function _inherits(subClass, superClass) { | ||
if (typeof superClass !== 'function' && superClass !== null) { | ||
throw new TypeError('Super expression must either be null or a function') | ||
} | ||
subClass.prototype = Object.create(superClass && superClass.prototype, { | ||
constructor: { value: subClass, writable: true, configurable: true }, | ||
}) | ||
if (superClass) _setPrototypeOf(subClass, superClass) | ||
} | ||
function _setPrototypeOf(o, p) { | ||
_setPrototypeOf = | ||
Object.setPrototypeOf || | ||
function _setPrototypeOf(o, p) { | ||
o.__proto__ = p | ||
return o | ||
} | ||
return _setPrototypeOf(o, p) | ||
} | ||
var _require = require('events'), | ||
@@ -118,0 +119,0 @@ EventEmitter = _require.EventEmitter |
# History | ||
## v4.1.0 2020 May 4 | ||
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation) | ||
## v4.0.0 2020 March 26 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"title": "Event Emitter Grouped", | ||
"name": "event-emitter-grouped", | ||
"version": "4.0.0", | ||
"version": "4.1.0-next.1588596905.f9fd7accae0da4da94ee2367101e582d4aaa3ba8", | ||
"description": "Emit events in serial or parallel with support for synchronous and asynchronous listeners", | ||
@@ -13,3 +13,5 @@ "homepage": "https://github.com/bevry/event-emitter-grouped", | ||
"completion", | ||
"dom", | ||
"emitter", | ||
"esnext", | ||
"event", | ||
@@ -19,2 +21,3 @@ "eventemitter", | ||
"flow", | ||
"node", | ||
"parallel", | ||
@@ -87,3 +90,3 @@ "serial", | ||
"engines": { | ||
"node": "10 || 12", | ||
"node": "10 || 12 || 13 || 14", | ||
"browsers": false | ||
@@ -115,16 +118,17 @@ } | ||
"@babel/cli": "^7.8.4", | ||
"@babel/core": "^7.9.0", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.9.0", | ||
"@babel/preset-env": "^7.9.0", | ||
"assert-helpers": "^6.0.0", | ||
"@babel/core": "^7.9.6", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.9.6", | ||
"@babel/preset-env": "^7.9.6", | ||
"@bevry/update-contributors": "^1.0.1", | ||
"assert-helpers": "^6.2.0", | ||
"eslint": "^6.8.0", | ||
"eslint-config-bevry": "^2.3.0", | ||
"eslint-config-prettier": "^6.10.1", | ||
"eslint-config-bevry": "^3.3.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-babel": "^5.3.0", | ||
"eslint-plugin-prettier": "^3.1.2", | ||
"jsdoc": "^3.6.3", | ||
"eslint-plugin-prettier": "^3.1.3", | ||
"jsdoc": "^3.6.4", | ||
"kava": "^4.4.0", | ||
"minami": "^1.2.3", | ||
"prettier": "^2.0.2", | ||
"projectz": "^1.19.0", | ||
"prettier": "^2.0.5", | ||
"projectz": "^1.19.1", | ||
"surge": "^0.21.3", | ||
@@ -138,6 +142,7 @@ "valid-directory": "^1.6.0" | ||
"our:deploy": "echo no need for this project", | ||
"our:meta": "npm run our:meta:docs && npm run our:meta:projectz", | ||
"our:meta": "npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz", | ||
"our:meta:contributors": "npx @bevry/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:projectz": "projectz compile", | ||
"our:meta:docs:jsdoc": "rm -Rf ./docs && npx 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:projectz": "npx 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", | ||
@@ -153,4 +158,4 @@ "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:verify": "npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier", | ||
"our:verify:directory": "valid-directory", | ||
"our:verify:eslint": "eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source", | ||
"our:verify:directory": "npx valid-directory", | ||
"our:verify:eslint": "npx eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source", | ||
"our:verify:prettier": "prettier --write .", | ||
@@ -157,0 +162,0 @@ "test": "node ./source/test.js" |
@@ -111,3 +111,3 @@ <!-- TITLE/ --> | ||
<script type="module"> | ||
import * as pkg from '//dev.jspm.io/event-emitter-grouped@4.0.0' | ||
import * as pkg from '//dev.jspm.io/event-emitter-grouped@4.1.0' | ||
</script> | ||
@@ -165,3 +165,3 @@ ``` | ||
<ul><li><a href="http://balupton.com">Benjamin Lupton</a></li></ul> | ||
<ul><li><a href="http://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/event-emitter-grouped/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/event-emitter-grouped">view contributions</a></li></ul> | ||
@@ -186,4 +186,5 @@ <h3>Sponsors</h3> | ||
<ul><li><a href="http://balupton.com">Benjamin Lupton</a></li> | ||
<li><a href="http://seanfridman.com">Sean Fridman</a></li></ul> | ||
<ul><li><a href="http://balupton.com">Benjamin Lupton</a> — <a href="https://github.com/bevry/event-emitter-grouped/commits?author=balupton" title="View the GitHub contributions of Benjamin Lupton on repository bevry/event-emitter-grouped">view contributions</a></li> | ||
<li><a href="http://seanfridman.com">Sean Fridman</a> — <a href="https://github.com/bevry/event-emitter-grouped/commits?author=sfrdmn" title="View the GitHub contributions of Sean Fridman on repository bevry/event-emitter-grouped">view contributions</a></li> | ||
<li><a href="http://github.com/apps/dependabot-preview">dependabot-preview[bot]</a> — <a href="https://github.com/bevry/event-emitter-grouped/commits?author=dependabot-preview[bot]" title="View the GitHub contributions of dependabot-preview[bot] on repository bevry/event-emitter-grouped">view contributions</a></li></ul> | ||
@@ -190,0 +191,0 @@ <a href="https://github.com/bevry/event-emitter-grouped/blob/master/CONTRIBUTING.md#files">Discover how you can contribute by heading on over to the <code>CONTRIBUTING.md</code> file.</a> |
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
35616
360
207
18
1