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"
|
"test": "xo && c8 ava && tsc --noEmit"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"ava": "^4.3.3",
|
"ava": "^6.1.0",
|
||||||
"c8": "^7.12.0",
|
"c8": "^9.1.0",
|
||||||
"ts-node": "^10.9.1",
|
"ts-node": "^10.9.2",
|
||||||
"typescript": "^4.8.4",
|
"typescript": "^5.3.3",
|
||||||
"xo": "^0.52.3"
|
"xo": "^0.56.0"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "build/source/migration-helper.js",
|
"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 test from 'ava';
|
||||||
|
|
||||||
import {migrate, Migration} from '../source/migration-helper.js';
|
import {migrate, Migration} from '../source/migration-helper.js';
|
||||||
|
|
||||||
test('migrate<Date>', async (t) => {
|
test('migrate<Date>', async (t) => {
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import test from 'ava';
|
import test from 'ava';
|
||||||
|
|
||||||
import {migrate, Migration} from '../source/migration-helper.js';
|
import {migrate, Migration} from '../source/migration-helper.js';
|
||||||
|
|
||||||
test('migrate<number>', async (t) => {
|
test('migrate<number>', async (t) => {
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import test from 'ava';
|
import test from 'ava';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
migrate,
|
migrate,
|
||||||
Migration,
|
Migration,
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import test from 'ava';
|
import test from 'ava';
|
||||||
|
|
||||||
import {migrate, Migration} from '../source/migration-helper.js';
|
import {migrate, Migration} from '../source/migration-helper.js';
|
||||||
|
|
||||||
test('migrate<string>', async (t) => {
|
test('migrate<string>', async (t) => {
|
||||||
|
|
Loading…
Reference in New Issue