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.0.0 to 9.1.0-next.1699860066.1d31fe0c55415e2d6a01f026a51225a6228d8087

11

package.json
{
"title": "TaskGroup",
"name": "taskgroup",
"version": "9.0.0",
"version": "9.1.0-next.1699860066.1d31fe0c55415e2d6a01f026a51225a6228d8087",
"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"
},

@@ -265,2 +266,2 @@ "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)

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