Update dependencies and fix linting issues.
This commit is contained in:
parent
43c3a5c132
commit
fc5741192d
10
package.json
10
package.json
|
@ -14,11 +14,11 @@
|
|||
"test": "xo && c8 ava && tsc --noEmit"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "^4.3.3",
|
||||
"c8": "^7.12.0",
|
||||
"ts-node": "^10.9.1",
|
||||
"typescript": "^4.8.4",
|
||||
"xo": "^0.52.3"
|
||||
"ava": "^6.1.0",
|
||||
"c8": "^9.1.0",
|
||||
"ts-node": "^10.9.2",
|
||||
"typescript": "^5.3.3",
|
||||
"xo": "^0.56.0"
|
||||
},
|
||||
"type": "module",
|
||||
"main": "build/source/migration-helper.js",
|
||||
|
|
3320
pnpm-lock.yaml
3320
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
|
@ -1,5 +1,4 @@
|
|||
import test from 'ava';
|
||||
|
||||
import {migrate, Migration} from '../source/migration-helper.js';
|
||||
|
||||
test('migrate<Date>', async (t) => {
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import test from 'ava';
|
||||
|
||||
import {migrate, Migration} from '../source/migration-helper.js';
|
||||
|
||||
test('migrate<number>', async (t) => {
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import test from 'ava';
|
||||
|
||||
import {
|
||||
migrate,
|
||||
Migration,
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import test from 'ava';
|
||||
|
||||
import {migrate, Migration} from '../source/migration-helper.js';
|
||||
|
||||
test('migrate<string>', async (t) => {
|
||||
|
|
Loading…
Reference in New Issue