Skip to content

Commit 2ff7efd

Browse files
authored
Merge branch 'master' into feat/separate-source-reading
2 parents 86e2d4e + 3370277 commit 2ff7efd

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

packages/integrations/src/reportingobserver.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ interface Report {
1111
}
1212

1313
/** JSDoc */
14-
enum ReportTypes {
14+
const enum ReportTypes {
1515
/** JSDoc */
1616
Crash = 'crash',
1717
/** JSDoc */

packages/react/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,5 @@
103103
}
104104
}
105105
},
106-
"sideEffects": [
107-
"./src/index.ts"
108-
]
106+
"sideEffects": false
109107
}

packages/utils/src/syncpromise.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import { isThenable } from './is';
66

77
/** SyncPromise internal states */
8-
enum States {
8+
const enum States {
99
/** Pending */
1010
PENDING = 'PENDING',
1111
/** Resolved / OK */

0 commit comments

Comments
 (0)