Skip to content

Commit 4566129

Browse files
committed
chore: typescript refactor
chore: bump dependencies
1 parent 85c7f82 commit 4566129

File tree

11 files changed

+15784
-15665
lines changed

11 files changed

+15784
-15665
lines changed

.eslintrc.json

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
{
22
"root": true,
33
"extends": [
4-
"@nodecraft"
4+
"@nodecraft/eslint-config/typescript"
55
],
66
"plugins": [
7-
"json",
8-
"node"
7+
"json"
98
],
109
"parserOptions": {
1110
"sourceType": "module"
1211
},
13-
"rules": {
14-
"node/no-missing-import": "off",
15-
"node/no-unsupported-features/es-syntax": "off"
16-
}
17-
}
12+
"rules": {}
13+
}

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,8 @@ jobs:
2727

2828
- run: npm run lint
2929

30+
- run: npm run check-types
31+
32+
- run: npm run build
33+
3034
- run: npm test

__tests__/.eslintrc.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

dist/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
declare function run(): Promise<void>;
2+
export default run;

0 commit comments

Comments
 (0)