chore: bump dependency

This commit is contained in:
Reinaldy Rafli 2022-09-24 07:53:12 +07:00
parent 798091d82e
commit c21b4d69a7
No known key found for this signature in database
GPG Key ID: EA1B2522C1693EC8
5 changed files with 7380 additions and 1961 deletions

7361
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -48,20 +48,20 @@
}
},
"devDependencies": {
"@types/node": "^16.6.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"c8": "^7.8.0",
"commitizen": "^4.2.4",
"@rollup/plugin-typescript": "^8.5.0",
"@types/node": "^18.7.19",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"c8": "^7.12.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.12.20",
"esbuild-register": "^3.0.0",
"eslint": "^7.32.0",
"eslint-config-xo-space": "^0.29.0",
"rollup": "^2.56.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.5",
"uvu": "^0.5.1",
"watchlist": "^0.2.3"
"esbuild": "^0.15.9",
"esbuild-register": "^3.3.3",
"eslint": "^8.24.0",
"eslint-config-xo-space": "^0.33.0",
"rollup": "^2.79.1",
"typescript": "^4.8.3",
"uvu": "^0.5.6",
"watchlist": "^0.3.1"
}
}

View File

@ -1,6 +1,7 @@
import ts from 'rollup-plugin-typescript2';
import { defineConfig } from "rollup";
import ts from "@rollup/plugin-typescript";
export default {
export default defineConfig({
input: 'src/index.ts',
output: [
{
@ -13,6 +14,6 @@ export default {
},
],
plugins: [
ts(),
ts({ tsconfig: "./tsconfig.json" }),
],
};
});

1943
yarn.lock

File diff suppressed because it is too large Load Diff