Skip to content

Commit

Permalink
fix(build): rollup config fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dalisoft committed Jan 4, 2023
1 parent 8379f84 commit c09ef11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import resolve from '@rollup/plugin-node-resolve';
import typescript from 'rollup-plugin-typescript2';
import { dependencies } from './package.json';
import pkg from './package.json' assert { type: 'json' };

const external = Object.keys(dependencies);
const external = Object.keys(pkg.dependencies);

export default {
input: `./src/analyze.ts`,
Expand Down

0 comments on commit c09ef11

Please sign in to comment.