Skip to content

Commit cd001e1

Browse files
committed
use 7.4.4
1 parent 9fccc46 commit cd001e1

File tree

3 files changed

+592
-389
lines changed

3 files changed

+592
-389
lines changed

package.json

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
"url": "git://github.com/getsentry/sentry.git"
88
},
99
"dependencies": {
10-
"@babel/core": "^7.0.0",
11-
"@babel/plugin-proposal-class-properties": "^7.0.0",
12-
"@babel/plugin-proposal-decorators": "^7.0.0",
13-
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
14-
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
15-
"@babel/plugin-transform-runtime": "^7.0.0",
16-
"@babel/polyfill": "^7.0.0",
17-
"@babel/preset-env": "^7.0.0",
10+
"@babel/core": "~7.4.4",
11+
"@babel/plugin-proposal-class-properties": "~7.4.4",
12+
"@babel/plugin-proposal-decorators": "~7.4.4",
13+
"@babel/plugin-proposal-object-rest-spread": "~7.4.4",
14+
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
15+
"@babel/plugin-transform-runtime": "~7.4.4",
16+
"@babel/polyfill": "~7.4.4",
17+
"@babel/preset-env": "~7.4.4",
1818
"@babel/preset-react": "^7.0.0",
1919
"@babel/preset-typescript": "^7.3.3",
20-
"@babel/runtime": "^7.0.0",
20+
"@babel/runtime": "~7.4.4",
2121
"@sentry/browser": "5.6.0-beta.4",
2222
"@sentry/integrations": "5.6.0-beta.4",
2323
"@types/classnames": "^2.2.0",
@@ -46,6 +46,7 @@
4646
"color": "^3.1.0",
4747
"compression-webpack-plugin": "^2.0.0",
4848
"copy-webpack-plugin": "^5.0.3",
49+
"core-js": "^3.2.1",
4950
"create-react-class": "^15.6.2",
5051
"crypto-js": "3.1.5",
5152
"css-loader": "^2.0.1",
@@ -101,6 +102,7 @@
101102
"react-sparklines": "1.7.0",
102103
"react-virtualized": "^9.20.1",
103104
"reflux": "0.4.1",
105+
"regenerator-runtime": "^0.13.3",
104106
"scroll-to-element": "^2.0.0",
105107
"sentry-dreamy-components": "^1.0.2",
106108
"sprintf-js": "1.0.3",
@@ -129,12 +131,12 @@
129131
"@typescript-eslint/eslint-plugin": "^1.11.0",
130132
"@typescript-eslint/parser": "^1.11.0",
131133
"babel-eslint": "^10.0.1",
132-
"babel-gettext-extractor": "^3.0.0",
134+
"babel-gettext-extractor": "^4.1.3",
133135
"babel-jest": "24.1.0",
134136
"babel-plugin-dynamic-import-node": "^2.2.0",
135137
"enzyme": "3.10.0",
136138
"enzyme-adapter-react-16": "1.14.0",
137-
"enzyme-to-json": "3.3.5",
139+
"enzyme-to-json": "3.4.0",
138140
"eslint": "5.11.1",
139141
"eslint-config-sentry-app": "1.14.0",
140142
"jest": "24.1.0",

src/sentry/static/sentry/app/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
import '@babel/polyfill';
1+
// These imports (core-js and regenerator-runtime) are replacements for deprecated `@babel/polyfill`
2+
import 'core-js/stable';
3+
import 'regenerator-runtime/runtime';
24

35
const BOOTSTRAP_URL = '/api/client-config/';
46

0 commit comments

Comments
 (0)