forked from jitsi/jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(config): add last N limit mapping (jitsi#7422)
Adds 'lastNLimits' config value which allows to define last N value per number of participants. See config.js for more details.
- Loading branch information
1 parent
168dbd6
commit cc9cb6a
Showing
10 changed files
with
13,887 additions
and
6,352 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// babel is used for jest | ||
// FIXME make jest work with webpack if possible? | ||
module.exports = { | ||
env: { | ||
test: { | ||
plugins: [ | ||
|
||
// Stage 2 | ||
'@babel/plugin-proposal-export-default-from', | ||
'@babel/plugin-proposal-export-namespace-from', | ||
'@babel/plugin-proposal-nullish-coalescing-operator', | ||
'@babel/plugin-proposal-optional-chaining', | ||
|
||
// Stage 3 | ||
'@babel/plugin-syntax-dynamic-import', | ||
[ '@babel/plugin-proposal-class-properties', { loose: false } ], | ||
'@babel/plugin-proposal-json-strings', | ||
|
||
// lib-jitsi-meet | ||
'@babel/plugin-transform-flow-strip-types' | ||
], | ||
presets: [ | ||
'@babel/env', | ||
'@babel/preset-flow', | ||
'@babel/react' | ||
] | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module.exports = { | ||
moduleFileExtensions: [ | ||
'js' | ||
], | ||
testMatch: [ | ||
'<rootDir>/react/**/?(*.)+(test)?(.web).js?(x)' | ||
], | ||
verbose: true | ||
}; |
Oops, something went wrong.