Skip to content

Commit

Permalink
Update all the things, including forcing a few
Browse files Browse the repository at this point in the history
The `yui` suite of projects are unmaintained, and depend on old things.
So we force a request upgrade.  This "forcing" only affects docs building.
  • Loading branch information
djmitche committed Jul 3, 2019
1 parent c0c1072 commit 5292f48
Show file tree
Hide file tree
Showing 3 changed files with 1,099 additions and 309 deletions.
14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,19 @@
"node": ">=4"
},
"dependencies": {
"debug": "^3.1.0",
"debug": "^4.1.1",
"xml2js": "^0.4.19"
},
"resolutions": {
"yuidocjs/**/request": "^2.88.0",
"yuidocjs/**/fresh": "^0.5.2",
"yuidocjs/**/forwarded": "^0.1.2",
"yuidocjs/**/mime": "^1.4.1"
},
"devDependencies": {
"jsdoc": "^3.5.5",
"mocha": "^4.0.1",
"typed-env-config": "^1.1.1",
"jsdoc": "^3.6.2",
"mocha": "^6.1.4",
"typed-env-config": "^3.0.0",
"yuidoc-lucid-theme": "jonasfj/yuidoc-lucid-theme",
"yuidocjs": "^0.10.2"
}
Expand Down
4 changes: 2 additions & 2 deletions test/utils_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ suite("Utils", function() {

// Server for testing utils.request
var server = null;
before(function() {
suiteSetup(function() {
server = https.createServer({
key: fs.readFileSync(path.join(__dirname, 'certs', 'server.key')),
cert: fs.readFileSync(path.join(__dirname, 'certs', 'server.crt'))
Expand Down Expand Up @@ -47,7 +47,7 @@ suite("Utils", function() {
});
});

after(function() {
suiteTeardown(function() {
return new Promise(function(accept, reject) {
server.on('close', accept);
server.on('error', reject);
Expand Down
Loading

0 comments on commit 5292f48

Please sign in to comment.