Skip to content

Commit 2d738ef

Browse files
committed
refactor!: drop node 14
1 parent a6c022d commit 2d738ef

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright © 2022 三咲智子 (https://github.com/sxzz)
3+
Copyright © 2022-PRESENT 三咲智子 (https://github.com/sxzz)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ jsxToString(
123123
// "<div><p>foo</p><p>bar</p><br/><div/>123</div>"
124124
```
125125

126-
127126
## Benchmark
128127

129128
```
@@ -134,7 +133,7 @@ jsxToString(
134133
<small>
135134
Tested on Apple M1 Max / 32GB
136135

137-
*More samples are welcome.*
136+
_More samples are welcome._
138137
</small>
139138

140139
## Sponsors
@@ -147,4 +146,4 @@ Tested on Apple M1 Max / 32GB
147146

148147
## License
149148

150-
[MIT](./LICENSE) License © 2022 [三咲智子](https://github.com/sxzz)
149+
[MIT](./LICENSE) License © 2022-PRESENT [三咲智子](https://github.com/sxzz)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,6 @@
103103
"vitest": "^0.32.0"
104104
},
105105
"engines": {
106-
"node": ">=14.19.0"
106+
"node": ">=16.14.0"
107107
}
108108
}

tsup.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { defineConfig } from 'tsup'
33
export default defineConfig({
44
entry: ['./src'],
55
format: ['cjs', 'esm'],
6-
target: 'node14',
6+
target: 'node16.14',
77
clean: true,
88
dts: true,
99
})

0 commit comments

Comments
 (0)