Skip to content

Commit

Permalink
Adding json parse for ton dep
Browse files Browse the repository at this point in the history
  • Loading branch information
y3fers0n committed Sep 12, 2024
1 parent 46b3fde commit d9a62d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
],
"devDependencies": {
"@rollup/plugin-commonjs": "22.0.2",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@types/bun": "latest",
"esbuild": "0.17.19",
Expand All @@ -34,4 +35,4 @@
"peerDependencies": {
"typescript": "^5.0.0"
}
}
}
2 changes: 2 additions & 0 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import esbuild from 'rollup-plugin-esbuild';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';

const input = './index.ts';
const plugins = [
json(),
nodeResolve({ preferBuiltins: false, browser: true }),
commonjs(),
esbuild({
Expand Down

0 comments on commit d9a62d5

Please sign in to comment.