Skip to content

Commit dc2ad83

Browse files
committed
Update docs and configs
1 parent 65d30cf commit dc2ad83

File tree

8 files changed

+9
-6
lines changed

8 files changed

+9
-6
lines changed

.node-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v18

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ For the CLI, please refer to [docs/cli.md](./docs/cli.md).
5252

5353
## License
5454

55-
This project is MIT licensed, you can find the license file [here](./LICENSE).
55+
This project is licensed under the terms of the MIT license.

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,8 @@
1717
"npm-run-all": "^4.1.5",
1818
"tsup": "^8.3.5",
1919
"typescript": "^5.6.3"
20+
},
21+
"engines": {
22+
"node": ">=18"
2023
}
2124
}

packages/cli/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ rowid --help
1818

1919
## License
2020

21-
This project is MIT licensed, you can find the license file [here](./LICENSE).
21+
This project is licensed under the terms of the MIT license.

packages/rowid/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ const id: string = RowID();
2828

2929
## License
3030

31-
This project is MIT licensed, you can find the license file [here](./LICENSE).
31+
This project is licensed under the terms of the MIT license.

packages/rowid/tsconfig.cjs.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4-
"target": "ES5",
54
"module": "CommonJS"
65
}
76
}

packages/rowid/tsconfig.esm.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4-
"target": "ES2015",
5-
"module": "ES2015"
4+
"module": "ESNext"
65
}
76
}

packages/rowid/tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": "../../tsconfig.base.json",
33
"compilerOptions": {
4+
"target": "ES2022",
45
"baseUrl": ".",
56
"paths": {
67
"#/*": ["./src/*"]

0 commit comments

Comments
 (0)