mirror of
https://github.com/joelwmale/webhook-action.git
synced 2026-08-24 21:23:37 +08:00
update modules
This commit is contained in:
+3
-3
@@ -1,7 +1,7 @@
|
||||
# queue-microtask [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url]
|
||||
# queue-microtask [![ci][ci-image]][ci-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url]
|
||||
|
||||
[travis-image]: https://img.shields.io/travis/feross/queue-microtask/master.svg
|
||||
[travis-url]: https://travis-ci.org/feross/queue-microtask
|
||||
[ci-image]: https://img.shields.io/github/workflow/status/feross/queue-microtask/ci/master
|
||||
[ci-url]: https://github.com/feross/queue-microtask/actions
|
||||
[npm-image]: https://img.shields.io/npm/v/queue-microtask.svg
|
||||
[npm-url]: https://npmjs.org/package/queue-microtask
|
||||
[downloads-image]: https://img.shields.io/npm/dm/queue-microtask.svg
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
let promise
|
||||
|
||||
module.exports = typeof queueMicrotask === 'function'
|
||||
? queueMicrotask.bind(globalThis)
|
||||
? queueMicrotask.bind(typeof window !== 'undefined' ? window : global)
|
||||
// reuse resolved promise, and allocate it lazily
|
||||
: cb => (promise || (promise = Promise.resolve()))
|
||||
.then(cb)
|
||||
|
||||
+17
-18
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "queue-microtask",
|
||||
"description": "fast, tiny `queueMicrotask` shim for modern engines",
|
||||
"version": "1.2.2",
|
||||
"version": "1.2.3",
|
||||
"author": {
|
||||
"name": "Feross Aboukhadijeh",
|
||||
"email": "feross@feross.org",
|
||||
@@ -10,11 +10,24 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/feross/queue-microtask/issues"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"standard": "*",
|
||||
"tape": "^5.0.1"
|
||||
"tape": "^5.2.2"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/feross"
|
||||
},
|
||||
{
|
||||
"type": "patreon",
|
||||
"url": "https://www.patreon.com/feross"
|
||||
},
|
||||
{
|
||||
"type": "consulting",
|
||||
"url": "https://feross.org/support"
|
||||
}
|
||||
],
|
||||
"homepage": "https://github.com/feross/queue-microtask",
|
||||
"keywords": [
|
||||
"asap",
|
||||
@@ -38,19 +51,5 @@
|
||||
},
|
||||
"scripts": {
|
||||
"test": "standard && tape test/*.js"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/feross"
|
||||
},
|
||||
{
|
||||
"type": "patreon",
|
||||
"url": "https://www.patreon.com/feross"
|
||||
},
|
||||
{
|
||||
"type": "consulting",
|
||||
"url": "https://feross.org/support"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user