Add undici as a devDep

This commit is contained in:
James M. Greene
2023-12-06 01:04:50 -06:00
parent 3430969625
commit b751a79e06
2 changed files with 34 additions and 9 deletions

40
package-lock.json generated
View File

@@ -23,7 +23,8 @@
"jest": "^29.7.0", "jest": "^29.7.0",
"make-coverage-badge": "^1.2.0", "make-coverage-badge": "^1.2.0",
"nock": "^13.3.8", "nock": "^13.3.8",
"prettier": "^3.1.0" "prettier": "^3.1.0",
"undici": "^6.0.0"
} }
}, },
"node_modules/@aashutoshrathi/word-wrap": { "node_modules/@aashutoshrathi/word-wrap": {
@@ -64,6 +65,17 @@
"undici": "^5.25.4" "undici": "^5.25.4"
} }
}, },
"node_modules/@actions/http-client/node_modules/undici": {
"version": "5.28.2",
"resolved": "https://registry.npmjs.org/undici/-/undici-5.28.2.tgz",
"integrity": "sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==",
"dependencies": {
"@fastify/busboy": "^2.0.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@ampproject/remapping": { "node_modules/@ampproject/remapping": {
"version": "2.2.1", "version": "2.2.1",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz",
@@ -6516,14 +6528,15 @@
} }
}, },
"node_modules/undici": { "node_modules/undici": {
"version": "5.28.1", "version": "6.0.0",
"resolved": "https://registry.npmjs.org/undici/-/undici-5.28.1.tgz", "resolved": "https://registry.npmjs.org/undici/-/undici-6.0.0.tgz",
"integrity": "sha512-xcIIvj1LOQH9zAL54iWFkuDEaIVEjLrru7qRpa3GrEEHk6OBhb/LycuUY2m7VCcTuDeLziXCxobQVyKExyGeIA==", "integrity": "sha512-m3nzx/3ji00Y6wY9hAJTBOBdtcMj0SyxpHKd5kaxghTftjB3icbYaPXGeogxIVcm6FVvnAM9aB6wz9L8Sntt8w==",
"dev": true,
"dependencies": { "dependencies": {
"@fastify/busboy": "^2.0.0" "@fastify/busboy": "^2.0.0"
}, },
"engines": { "engines": {
"node": ">=14.0" "node": ">=18.0"
} }
}, },
"node_modules/undici-types": { "node_modules/undici-types": {
@@ -6806,6 +6819,16 @@
"requires": { "requires": {
"tunnel": "^0.0.6", "tunnel": "^0.0.6",
"undici": "^5.25.4" "undici": "^5.25.4"
},
"dependencies": {
"undici": {
"version": "5.28.2",
"resolved": "https://registry.npmjs.org/undici/-/undici-5.28.2.tgz",
"integrity": "sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==",
"requires": {
"@fastify/busboy": "^2.0.0"
}
}
} }
}, },
"@ampproject/remapping": { "@ampproject/remapping": {
@@ -11527,9 +11550,10 @@
} }
}, },
"undici": { "undici": {
"version": "5.28.1", "version": "6.0.0",
"resolved": "https://registry.npmjs.org/undici/-/undici-5.28.1.tgz", "resolved": "https://registry.npmjs.org/undici/-/undici-6.0.0.tgz",
"integrity": "sha512-xcIIvj1LOQH9zAL54iWFkuDEaIVEjLrru7qRpa3GrEEHk6OBhb/LycuUY2m7VCcTuDeLziXCxobQVyKExyGeIA==", "integrity": "sha512-m3nzx/3ji00Y6wY9hAJTBOBdtcMj0SyxpHKd5kaxghTftjB3icbYaPXGeogxIVcm6FVvnAM9aB6wz9L8Sntt8w==",
"dev": true,
"requires": { "requires": {
"@fastify/busboy": "^2.0.0" "@fastify/busboy": "^2.0.0"
} }

View File

@@ -16,9 +16,10 @@
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-github": "^4.10.1", "eslint-plugin-github": "^4.10.1",
"jest": "^29.7.0", "jest": "^29.7.0",
"make-coverage-badge": "^1.2.0",
"nock": "^13.3.8", "nock": "^13.3.8",
"prettier": "^3.1.0", "prettier": "^3.1.0",
"make-coverage-badge": "^1.2.0" "undici": "^6.0.0"
}, },
"scripts": { "scripts": {
"all": "npm run format && npm run lint && npm run prepare && npm run test && npm run coverage-badge", "all": "npm run format && npm run lint && npm run prepare && npm run test && npm run coverage-badge",