Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

taskgroup

Package Overview
Dependencies
Maintainers
2
Versions
135
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

taskgroup - npm Package Compare versions

Comparing version 9.1.0 to 9.2.0-next.1699878139.5eca51731f2438f5362bb2775056621ac94f9a91

56

package.json
{
"title": "TaskGroup",
"name": "taskgroup",
"version": "9.1.0",
"version": "9.2.0-next.1699878139.5eca51731f2438f5362bb2775056621ac94f9a91",
"description": "Group together synchronous and asynchronous tasks and execute them with support for concurrency, naming, and nesting.",

@@ -80,3 +80,3 @@ "homepage": "https://github.com/bevry/taskgroup",

{
"description": "ESNext source code for Node.js 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules",
"description": "ESNext source code for Node.js 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with Require for modules",
"directory": "source",

@@ -91,3 +91,3 @@ "entry": "index.js",

"engines": {
"node": "8 || 10 || 12 || 14 || 16 || 18 || 20 || 21",
"node": "6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21",
"browsers": false

@@ -111,16 +111,2 @@ }

{
"description": "ESNext compiled for Node.js 21 with Require for modules",
"directory": "edition-node-21",
"entry": "index.js",
"tags": [
"compiled",
"javascript",
"require"
],
"engines": {
"node": "6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21",
"browsers": false
}
},
{
"description": "ESNext compiled for Node.js 4 with Require for modules",

@@ -145,6 +131,6 @@ "directory": "edition-node-4",

"ambi": "3.2.0",
"eachr": "^6.0.0",
"editions": "^6.10.0",
"extendr": "^7.0.0",
"unbounded": "^5.0.0"
"eachr": "^6.1.0",
"editions": "^6.11.0",
"extendr": "^7.1.0",
"unbounded": "^5.1.0"
},

@@ -157,3 +143,3 @@ "devDependencies": {

"@bevry/update-contributors": "^1.23.0",
"assert-helpers": "^11.1.0",
"assert-helpers": "^11.2.0",
"eslint": "^8.53.0",

@@ -164,6 +150,6 @@ "eslint-config-bevry": "^3.29.0",

"jsdoc": "^4.0.2",
"kava": "3.2.0",
"kava": "^7.0.0",
"prettier": "^3.1.0",
"projectz": "^2.23.0",
"safeps": "^11.0.0",
"safeps": "^11.1.0",
"surge": "^0.23.1",

@@ -174,5 +160,4 @@ "valid-directory": "^4.1.0"

"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next",
"our:compile": "npm run our:compile:edition-browsers && npm run our:compile:edition-node-21 && npm run our:compile:edition-node-4",
"our:compile": "npm run our:compile:edition-browsers && npm run our:compile:edition-node-4",
"our:compile:edition-browsers": "env BABEL_ENV=edition-browsers babel --out-dir ./edition-browsers ./source",
"our:compile:edition-node-21": "env BABEL_ENV=edition-node-21 babel --out-dir ./edition-node-21 ./source && printf '%s' '{\"type\": \"commonjs\"}' > edition-node-21/package.json",
"our:compile:edition-node-4": "env BABEL_ENV=edition-node-4 babel --out-dir ./edition-node-4 ./source && printf '%s' '{\"type\": \"commonjs\"}' > edition-node-4/package.json",

@@ -230,19 +215,2 @@ "our:deploy": "printf '%s\n' 'no need for this project'",

},
"edition-node-21": {
"sourceType": "script",
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "21"
},
"modules": "commonjs"
}
]
],
"plugins": [
"@babel/proposal-object-rest-spread"
]
},
"edition-node-4": {

@@ -272,2 +240,2 @@ "sourceType": "script",

}
}
}

@@ -58,3 +58,3 @@ <!-- TITLE/ -->

<script type="module">
import * as pkg from '//dev.jspm.io/taskgroup@9.1.0'
import * as pkg from '//dev.jspm.io/taskgroup@9.2.0'
</script>

@@ -68,5 +68,4 @@ ```

<ul><li><code>taskgroup</code> aliases <code>taskgroup/index.cjs</code> which uses the <a href="https://github.com/bevry/editions" title="You can use the Editions Autoloader to autoload the appropriate edition for your consumers environment">Editions Autoloader</a> to automatically select the correct edition for the consumer's environment</li>
<li><code>taskgroup/source/index.js</code> is <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> source code for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li>
<li><code>taskgroup/source/index.js</code> is <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> source code for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21 with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li>
<li><code>taskgroup/edition-browsers/index.js</code> is <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> compiled for web browsers with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li>
<li><code>taskgroup/edition-node-21/index.js</code> is <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> compiled for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 21 with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li>
<li><code>taskgroup/edition-node-4/index.js</code> is <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> compiled for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 4 with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li></ul>

@@ -73,0 +72,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc