taskgroup
Advanced tools
Comparing version 8.0.0 to 9.0.0-next.1699829250.0876efb829404700cc52977cbb7df5aea17eb904
{ | ||
"title": "TaskGroup", | ||
"name": "taskgroup", | ||
"version": "8.0.0", | ||
"version": "9.0.0-next.1699829250.0876efb829404700cc52977cbb7df5aea17eb904", | ||
"description": "Group together synchronous and asynchronous tasks and execute them with support for concurrency, naming, and nesting.", | ||
@@ -76,3 +76,3 @@ "homepage": "https://github.com/bevry/taskgroup", | ||
"engines": { | ||
"node": ">=8" | ||
"node": ">=4" | ||
}, | ||
@@ -108,12 +108,41 @@ "editions": [ | ||
} | ||
}, | ||
{ | ||
"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", | ||
"directory": "edition-node-4", | ||
"entry": "index.js", | ||
"tags": [ | ||
"compiled", | ||
"javascript", | ||
"require" | ||
], | ||
"engines": { | ||
"node": "4 || 6 || 8 || 10 || 12 || 14 || 16 || 18 || 20 || 21", | ||
"browsers": false | ||
} | ||
} | ||
], | ||
"type": "commonjs", | ||
"main": "source/index.js", | ||
"main": "index.cjs", | ||
"browser": "edition-browsers/index.js", | ||
"dependencies": { | ||
"ambi": "3.2.0", | ||
"eachr": "^4.5.0", | ||
"extendr": "^6.0.0", | ||
"unbounded": "^4.0.0" | ||
"eachr": "^6.0.0", | ||
"editions": "^6.10.0", | ||
"extendr": "^7.0.0", | ||
"unbounded": "^5.0.0" | ||
}, | ||
@@ -126,3 +155,3 @@ "devDependencies": { | ||
"@bevry/update-contributors": "^1.23.0", | ||
"assert-helpers": "^10.0.0", | ||
"assert-helpers": "^11.1.0", | ||
"eslint": "^8.53.0", | ||
@@ -136,3 +165,3 @@ "eslint-config-bevry": "^3.29.0", | ||
"projectz": "^2.23.0", | ||
"safeps": "^10.18.0", | ||
"safeps": "7.0.1", | ||
"surge": "^0.23.1", | ||
@@ -143,4 +172,6 @@ "valid-directory": "^4.1.0" | ||
"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next", | ||
"our:compile": "npm run our:compile:edition-browsers", | ||
"our:compile": "npm run our:compile:edition-browsers && npm run our:compile:edition-node-21 && 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", | ||
"our:deploy": "printf '%s\n' 'no need for this project'", | ||
@@ -165,3 +196,3 @@ "our:meta": "npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz", | ||
"our:verify:prettier": "prettier --write .", | ||
"test": "node ./source/test.js" | ||
"test": "node ./test.cjs" | ||
}, | ||
@@ -196,2 +227,36 @@ "eslintConfig": { | ||
] | ||
}, | ||
"edition-node-21": { | ||
"sourceType": "script", | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"targets": { | ||
"node": "21" | ||
}, | ||
"modules": "commonjs" | ||
} | ||
] | ||
], | ||
"plugins": [ | ||
"@babel/proposal-object-rest-spread" | ||
] | ||
}, | ||
"edition-node-4": { | ||
"sourceType": "script", | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"targets": { | ||
"node": "4" | ||
}, | ||
"modules": "commonjs" | ||
} | ||
] | ||
], | ||
"plugins": [ | ||
"@babel/proposal-object-rest-spread" | ||
] | ||
} | ||
@@ -205,2 +270,2 @@ } | ||
} | ||
} | ||
} |
@@ -58,3 +58,3 @@ <!-- TITLE/ --> | ||
<script type="module"> | ||
import * as pkg from '//dev.jspm.io/taskgroup@8.0.0' | ||
import * as pkg from '//dev.jspm.io/taskgroup@9.0.0' | ||
</script> | ||
@@ -67,5 +67,7 @@ ``` | ||
<ul><li><code>taskgroup</code> aliases <code>taskgroup/source/index.js</code></li> | ||
<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/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></ul> | ||
<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> | ||
@@ -72,0 +74,0 @@ <h3><a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a></h3> |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
261982
27
6910
158
5
1
+ Addededitions@^6.10.0
+ Addedeachr@6.6.0(transitive)
+ Addededitions@6.21.0(transitive)
+ Addedextendr@7.10.0(transitive)
+ Addedtypechecker@8.6.09.3.0(transitive)
+ Addedunbounded@5.4.0(transitive)
+ Addedversion-range@4.14.0(transitive)
- Removedeachr@4.5.0(transitive)
- Removedextendr@6.0.0(transitive)
- Removedtypechecker@6.4.07.18.0(transitive)
- Removedunbounded@4.0.0(transitive)
Updatedeachr@^6.0.0
Updatedextendr@^7.0.0
Updatedunbounded@^5.0.0