Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@
},
"author": "",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/core": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-env": "^7.24.7",
"@babel/runtime": "^7.20.6",
"@cypress/skip-test": "^2.6.1",
"@influxdata/oats": "^0.7.0",
Expand Down Expand Up @@ -111,9 +111,10 @@
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.41.0",
"babel-loader": "^9.1.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"clipboardy": "^2.3.0",
"core-js": "^3.37.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.2",
"css-minimizer-webpack-plugin": "^4.2.2",
Expand Down Expand Up @@ -169,7 +170,6 @@
"@influxdata/react-custom-scrollbars": "4.3.8",
"abortcontroller-polyfill": "^1.3.0",
"auth0-js": "^9.19.1",
"babel-polyfill": "^6.26.0",
"canvas-confetti": "^1.5.1",
"chroma-js": "^2.4.2",
"classnames": "^2.2.3",
Expand Down
3 changes: 0 additions & 3 deletions src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import 'babel-polyfill'
import 'abortcontroller-polyfill/dist/polyfill-patch-fetch'

// Libraries
import React, {PureComponent, Suspense} from 'react'
import {render} from 'react-dom'
Expand Down
2 changes: 1 addition & 1 deletion webpack.common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ module.exports = {
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env'],
presets: ['@babel/preset-env', {useBuiltIns: 'usage'}],
plugins: ['@babel/plugin-transform-runtime'],
},
},
Expand Down
Loading