Update dependencies in adapter-electron and pnpm-lock.yaml for improved compatibility

- Added @rollup/plugin-commonjs, @rollup/plugin-json, and @rollup/plugin-node-resolve as dependencies in package.json.
- Updated pnpm-lock.yaml to reflect the new dependencies and their versions.
- Removed unused import from index.js to streamline the code.
This commit is contained in:
Luke Hagar
2025-07-23 16:29:16 -05:00
parent 4d669414d2
commit bb685e1328
3 changed files with 142 additions and 2 deletions

View File

@@ -2,7 +2,6 @@
import { readFileSync, writeFileSync } from 'node:fs';
import fs from 'node:fs';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
import { rollup, watch as rollupWatch } from 'rollup';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';