mirror of https://github.com/aldy505/sql-dsl.git
chore: bump dependency
This commit is contained in:
parent
798091d82e
commit
c21b4d69a7
File diff suppressed because it is too large
Load Diff
28
package.json
28
package.json
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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" }),
|
||||
],
|
||||
};
|
||||
});
|
Loading…
Reference in New Issue