Skip to content

Commit 6acb66b

Browse files
committed
Merge remote-tracking branch 'origin/main' into 1.29-releases
2 parents dae15f1 + ac864f4 commit 6acb66b

File tree

98 files changed

+3851
-1929
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+3851
-1929
lines changed

.evergreen.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ functions:
8585
export HADRON_METRICS_BUGSNAG_KEY="${metrics_bugsnag_key}";
8686
export HADRON_METRICS_INTERCOM_APP_ID="${metrics_intercom_app_id}";
8787
export HADRON_METRICS_STITCH_APP_ID="${metrics_stitch_app_id}";
88+
export HADRON_METRICS_SEGMENT_API_KEY="${metrics_segment_api_key}";
8889
8990
# Directories used to install node, npm, and store artifacts
9091
export ARTIFACTS_PATH="$(pwd)/.deps"

THIRD-PARTY-NOTICES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The following third-party software is used by and included in **compass**.
2-
This document was automatically generated on Fri Nov 12 2021.
2+
This document was automatically generated on Mon Nov 15 2021.
33

44
## List of dependencies
55

configs/eslint-config-compass/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const testRules = {
2525
};
2626

2727
module.exports = {
28-
plugins: ['@typescript-eslint', 'jsx-a11y', 'mocha', 'react'],
28+
plugins: ['@typescript-eslint', 'jsx-a11y', 'mocha', 'react', 'react-hooks'],
2929
env: { node: true },
3030
overrides: [
3131
{
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
if (typeof window === 'undefined') {
22
require('jsdom-global/register');
3+
4+
window.requestAnimationFrame = function (callback) {
5+
return setTimeout(callback, 1);
6+
};
7+
window.cancelAnimationFrame = function (id) {
8+
clearTimeout(id);
9+
};
310
}

0 commit comments

Comments
 (0)