Skip to content

Commit 06e702a

Browse files
authored
Merge pull request #5 from StatelessStudio/v1.0.1
V1.0.1
2 parents 0fa0e23 + ea2fc34 commit 06e702a

4 files changed

Lines changed: 12 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# ts-error-handler
22

3+
## [1.0.1]
4+
5+
### Fixes
6+
- [Issue #3] error TS2307: Cannot find module 'handler-function' or its corresponding type declarations.
7+
38
## [1.0.0]
49

510
Initial release

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ts-error-handler",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"ts-project-version": "1.2.4",
55
"private": "true",
66
"scripts": {
@@ -38,6 +38,6 @@
3838
"ts-node": "^10.4.0",
3939
"ts-packager": "^1.0.1",
4040
"typedoc": "^0.22.11",
41-
"typescript": "^4.5.4"
41+
"typescript": "^4.5.5"
4242
}
4343
}

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if (!process[Symbol.for('ts-node.register.instance')]) {
88
});
99
}
1010

11-
import { HandlerFunction } from 'handler-function';
11+
import { HandlerFunction } from './handler-function';
1212

1313
/**
1414
* Options for setupErrorHandling

0 commit comments

Comments
 (0)