Skip to content

Commit cc489e5

Browse files
committed
Fix missing workerpool dev-dependency
1 parent b286556 commit cc489e5

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

LICENSE-3rdparty.csv

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ dev,sinon,BSD-3-Clause,Copyright 2010-2017 Christian Johansen
7474
dev,sinon-chai,WTFPL and BSD-2-Clause,Copyright 2004 Sam Hocevar 2012–2017 Domenic Denicola
7575
dev,tap,ISC,Copyright 2011-2022 Isaac Z. Schlueter and Contributors
7676
dev,tiktoken,MIT,Copyright (c) 2022 OpenAI, Shantanu Jain
77+
dev,workerpool,Apache license 2.0,Copyright (C) 2014-2024 Jos de Jong wjosdejong@gmail.com
7778
dev,yaml,ISC,Copyright Eemeli Aro <eemeli@gmail.com>
7879
file,aws-lambda-nodejs-runtime-interface-client,Apache 2.0,Copyright 2019 Amazon.com Inc. or its affiliates. All Rights Reserved.
7980
file,profile.proto,Apache license 2.0,Copyright 2016 Google Inc.

integration-tests/ci-visibility/run-workerpool.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const workerpool = require('workerpool') // eslint-disable-line n/no-extraneous-require
1+
const workerpool = require('workerpool')
22
const pool = workerpool.pool({ workerType: 'process' })
33

44
function add (a, b) {

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@
159159
"sinon-chai": "^3.7.0",
160160
"tap": "^16.3.7",
161161
"tiktoken": "^1.0.15",
162+
"workerpool": "^9.2.0",
162163
"yaml": "^2.5.0"
163164
}
164165
}

yarn.lock

+5
Original file line numberDiff line numberDiff line change
@@ -5395,6 +5395,11 @@ workerpool@^6.5.1:
53955395
resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.5.1.tgz#060f73b39d0caf97c6db64da004cd01b4c099544"
53965396
integrity sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==
53975397

5398+
workerpool@^9.2.0:
5399+
version "9.2.0"
5400+
resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-9.2.0.tgz#f74427cbb61234708332ed8ab9cbf56dcb1c4371"
5401+
integrity sha512-PKZqBOCo6CYkVOwAxWxQaSF2Fvb5Iv2fCeTP7buyWI2GiynWr46NcXSgK/idoV6e60dgCBfgYc+Un3HMvmqP8w==
5402+
53985403
wrap-ansi@^6.2.0:
53995404
version "6.2.0"
54005405
resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz"

0 commit comments

Comments
 (0)