Skip to content

Commit 1d63603

Browse files
authored
Merge pull request #4 from StatelessStudio/v1.0.3
[1.0.3]
2 parents ae30304 + 1b02510 commit 1d63603

14 files changed

Lines changed: 5250 additions & 1005 deletions

.eslintrc.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
}
1919
],
2020
"rules": {
21+
"no-console": 1,
22+
"no-debugger": 1,
2123
"curly": 2,
2224
"indent": [2, "tab"],
2325
"max-len": [1, 80],

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: node_js
22
node_js:
3-
- "12.13.0"
3+
- 16
44
install:
55
- npm install --ignore-scripts
66
after_success:

.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Launch Program",
11+
"program": "${workspaceFolder}/src/index.ts",
12+
"preLaunchTask": "npm: compile",
13+
"outFiles": ["${workspaceFolder}/dist/**/*.js"]
14+
},
15+
]
16+
}

.vscode/tasks.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "npm",
6+
"script": "compile",
7+
"group": {
8+
"kind": "build",
9+
"isDefault": true
10+
},
11+
"problemMatcher": [],
12+
"label": "npm: compile"
13+
}
14+
]
15+
}

CHANGELOG.md

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

3+
## [1.0.3]
4+
5+
### Fixes
6+
- [Issue #3] Some errors are not logged with the error string
7+
38
## [1.0.2]
49

510
### Fixes

MIGRATION.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# ts-tiny-log Migration Guide

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ log.info('uppercase with square brackets');
153153

154154
Output:
155155
```
156-
[2022-01-17T13:21:15.224Z] [INFO] with square brackets
156+
[2022-01-17T13:21:15.224Z] [INFO] uppercase with square brackets
157157
```
158158

159159
---

nodemon.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"dist"
88
],
99
"watch": [ "src/", "*.*", ".env" ],
10-
"exec": "npm start",
10+
"exec": "node_modules/.bin/ts-node src",
1111
"ext": "*"
1212
}

0 commit comments

Comments
 (0)