taskgroup
Advanced tools
Comparing version 9.0.0 to 9.1.0
{ | ||
"title": "TaskGroup", | ||
"name": "taskgroup", | ||
"version": "9.0.0", | ||
"version": "9.1.0", | ||
"description": "Group together synchronous and asynchronous tasks and execute them with support for concurrency, naming, and nesting.", | ||
@@ -160,5 +160,5 @@ "homepage": "https://github.com/bevry/taskgroup", | ||
"kava": "3.2.0", | ||
"prettier": "^3.0.3", | ||
"prettier": "^3.1.0", | ||
"projectz": "^2.23.0", | ||
"safeps": "7.0.1", | ||
"safeps": "^11.0.0", | ||
"surge": "^0.23.1", | ||
@@ -201,3 +201,4 @@ "valid-directory": "^4.1.0" | ||
"semi": false, | ||
"singleQuote": true | ||
"singleQuote": true, | ||
"trailingComma": "es5" | ||
}, | ||
@@ -204,0 +205,0 @@ "babel": { |
@@ -58,3 +58,3 @@ <!-- TITLE/ --> | ||
<script type="module"> | ||
import * as pkg from '//dev.jspm.io/taskgroup@9.0.0' | ||
import * as pkg from '//dev.jspm.io/taskgroup@9.1.0' | ||
</script> | ||
@@ -61,0 +61,0 @@ ``` |
@@ -308,3 +308,3 @@ /* eslint no-extra-parens:0 func-style:0 */ | ||
throw new Error( | ||
`Unknown argument type of [${type}] given to Task::setConfig()`, | ||
`Unknown argument type of [${type}] given to Task::setConfig()` | ||
) | ||
@@ -348,3 +348,3 @@ } | ||
throw new Error( | ||
`Deprecated configuration property [${key}] given to Task::setConfig()`, | ||
`Deprecated configuration property [${key}] given to Task::setConfig()` | ||
) | ||
@@ -451,3 +451,3 @@ | ||
const completedError = new Error( | ||
`The task [${this.names}] just completed, but it had already completed earlier, this is unexpected.\nTask Source: ${source}`, | ||
`The task [${this.names}] just completed, but it had already completed earlier, this is unexpected.\nTask Source: ${source}` | ||
) | ||
@@ -501,3 +501,3 @@ this.emit('error', completedError) | ||
const error = new Error( | ||
`The task [${this.names}] failed to run as no method was defined for it.`, | ||
`The task [${this.names}] failed to run as no method was defined for it.` | ||
) | ||
@@ -520,3 +520,3 @@ this.emit('error', error) | ||
const error = new Error( | ||
`The task [${this.names}] failed to run as it requested to use domains but domains are not available.`, | ||
`The task [${this.names}] failed to run as it requested to use domains but domains are not available.` | ||
) | ||
@@ -589,3 +589,3 @@ this.emit('error', error) | ||
const error = new Error( | ||
`Invalid run status for the Task [${this.names}], it was [${this.state.status}] instead of [created].`, | ||
`Invalid run status for the Task [${this.names}], it was [${this.state.status}] instead of [created].` | ||
) | ||
@@ -592,0 +592,0 @@ this.emit('error', error) |
@@ -414,3 +414,3 @@ /* eslint no-extra-parens:0 no-warning-comments:0 */ | ||
const error = new Error( | ||
'Clearing running items is not possible. Instead remaining items and wait for running items to complete.', | ||
'Clearing running items is not possible. Instead remaining items and wait for running items to complete.' | ||
) | ||
@@ -517,3 +517,3 @@ this.emit('error', error) | ||
throw new Error( | ||
`Unknown argument type of [${type}] given to TaskGroup::setConfig()`, | ||
`Unknown argument type of [${type}] given to TaskGroup::setConfig()` | ||
) | ||
@@ -575,3 +575,3 @@ } | ||
throw new Error( | ||
`Deprecated configuration property [${key}] given to TaskGroup::setConfig()`, | ||
`Deprecated configuration property [${key}] given to TaskGroup::setConfig()` | ||
) | ||
@@ -688,3 +688,3 @@ | ||
nestedTaskGroupConfig, | ||
...args, | ||
...args | ||
) | ||
@@ -1084,3 +1084,3 @@ | ||
const error = new Error( | ||
`Invalid run status for the TaskGroup [${this.names}], it was [${this.state.status}].`, | ||
`Invalid run status for the TaskGroup [${this.names}], it was [${this.state.status}].` | ||
) | ||
@@ -1087,0 +1087,0 @@ this.emit('error', error) |
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
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
261943