Skip to content

Commit

Permalink
v2.0.1 Update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Starrah committed Mar 15, 2022
1 parent be999f2 commit 0997dc2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "express-router-dynamic",
"version": "2.0.0",
"version": "2.0.1",
"description": "Express Router which loads js codes dynamically as well as serves static files, and routes based on directory structure.",
"main": "bld/index.js",
"type": "commonjs",
Expand All @@ -20,7 +20,8 @@
"url-parse": "^1.5.10"
},
"peerDependencies": {
"express": "*"
"express": "*",
"log4js": ">=2.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
Expand Down
2 changes: 1 addition & 1 deletion test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ describe('File Watching', function () {
])
await Promise.all([
fsp.appendFile(path.join(tempDir, "route", "test-watch-file.txt"), _.range(100).toString()),
expectEvent({level: "debug", data: /^Chokidar: change: .*test-watch-file\.txt$/})
expectEvent({level: "debug", data: /^Chokidar: change: .*test-watch-file\.txt$/}, 1500)
])
});

Expand Down

0 comments on commit 0997dc2

Please sign in to comment.