mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 00:20:04 +01:00
* Remove SchedulerHostConfigs * Fix builds * Fix forks * Move SchedulerNoDom check to npm/index.js * Fix tests * Add @gate source * Gate build-only test to build test runs
8 lines
230 B
JavaScript
8 lines
230 B
JavaScript
'use strict';
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = require('./cjs/scheduler-unstable_no_dom.production.min.js');
|
|
} else {
|
|
module.exports = require('./cjs/scheduler-unstable_no_dom.development.js');
|
|
}
|