Skip to content

Commit

Permalink
chore: remove unnecessary pollyfil deps, replace with minimal deps
Browse files Browse the repository at this point in the history
  • Loading branch information
roshaans committed Jun 13, 2023
1 parent 98d48aa commit 06e1c02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 2 additions & 4 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@
"buffer": "^6.0.3"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/polyfill": "^7.12.1",
"raw-loader": "^4.0.2"
"core-js": "^3.31.0",
"regenerator-runtime": "^0.13.11"
}
}
3 changes: 2 additions & 1 deletion frontend/src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ import {
NearSocialBridgeProvider,
} from "near-social-bridge";
import { IndexerDetailsProvider } from '../contexts/IndexerDetailsContext';
import "@babel/polyfill";
import 'core-js/stable';
import 'regenerator-runtime/runtime';
overrideLocalStorage();

export default function App({ Component, pageProps }: AppProps) {
Expand Down

0 comments on commit 06e1c02

Please sign in to comment.