Skip to content

Commit 22e0d8c

Browse files
committedOct 22, 2023
Require Node.js 18
1 parent d547f18 commit 22e0d8c

File tree

3 files changed

+11
-22
lines changed

3 files changed

+11
-22
lines changed
 

‎.github/workflows/main.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
node-version:
13-
- 16
13+
- 20
14+
- 18
1415
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions/setup-node@v2
16+
- uses: actions/checkout@v3
17+
- uses: actions/setup-node@v3
1718
with:
1819
node-version: ${{ matrix.node-version }}
1920
- run: npm install

‎package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"default": "./browser.js"
1818
},
1919
"engines": {
20-
"node": ">=12"
20+
"node": ">=18"
2121
},
2222
"scripts": {
2323
"test": "xo && ava && tsd"
@@ -45,13 +45,13 @@
4545
"stdout"
4646
],
4747
"dependencies": {
48-
"chalk": "^5.0.0",
49-
"is-unicode-supported": "^1.1.0"
48+
"chalk": "^5.3.0",
49+
"is-unicode-supported": "^1.3.0"
5050
},
5151
"devDependencies": {
52-
"ava": "^3.15.0",
53-
"strip-ansi": "^7.0.1",
54-
"tsd": "^0.19.0",
55-
"xo": "^0.47.0"
52+
"ava": "^5.3.1",
53+
"strip-ansi": "^7.1.0",
54+
"tsd": "^0.29.0",
55+
"xo": "^0.56.0"
5656
}
5757
}

‎readme.md

-12
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,3 @@ console.log(logSymbols.success, 'Finished successfully!');
3737
- [py-log-symbols](https://github.com/ManrajGrover/py-log-symbols) - Python port
3838
- [log-symbols](https://github.com/palash25/log-symbols) - Ruby port
3939
- [guumaster/logsymbols](https://github.com/guumaster/logsymbols) - Golang port
40-
41-
---
42-
43-
<div align="center">
44-
<b>
45-
<a href="https://tidelift.com/subscription/pkg/npm-log-symbols?utm_source=npm-log-symbols&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
46-
</b>
47-
<br>
48-
<sub>
49-
Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
50-
</sub>
51-
</div>

0 commit comments

Comments
 (0)
Please sign in to comment.