2
0

build: add pnpm

This commit is contained in:
Baptiste Arnaud
2022-08-08 08:21:36 +02:00
parent 8c3b5058f1
commit ee338f62dc
183 changed files with 19442 additions and 18364 deletions

View File

@@ -7,25 +7,25 @@
"license": "AGPL-3.0-or-later",
"private": true,
"devDependencies": {
"typescript": "^4.6.4",
"@rollup/plugin-commonjs": "^22.0.0",
"typescript": "^4.7.4",
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"rollup": "^2.72.1",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4"
"@rollup/plugin-typescript": "8.3.4",
"rollup": "2.77.2",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"next": "12.2.4",
"db": "workspace:*"
},
"dependencies": {
"db": "*",
"next": "^12.1.6",
"zod": "^3.17.3"
"zod": "^3.17.10"
},
"peerDependencies": {
"next": "^12.1.6",
"db": "*"
"next": "^12.0.0",
"db": "workspace:*"
},
"scripts": {
"build": "yarn rollup -c",
"dx": "yarn rollup -c --watch"
"build": "pnpm rollup -c",
"dx": "pnpm rollup -c --watch"
}
}

View File

@@ -31,7 +31,7 @@ export default [
],
},
{
input: 'dist/esm/types/index.d.ts',
input: 'dist/esm/index.d.ts',
output: [{ file: 'dist/index.d.ts', format: 'esm' }],
plugins: [dts()],
},