Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused www scheduler fork #13545

Merged
merged 1 commit into from
Sep 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions packages/shared/forks/Schedule.www.js

This file was deleted.

8 changes: 2 additions & 6 deletions scripts/rollup/forks.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,6 @@ const forks = Object.freeze({

schedule: (bundleType, entry, dependencies) => {
switch (bundleType) {
case FB_WWW_DEV:
case FB_WWW_PROD:
case FB_WWW_PROFILING:
return 'shared/forks/Schedule.www.js';
case UMD_DEV:
case UMD_PROD:
if (dependencies.indexOf('react') === -1) {
Expand All @@ -131,7 +127,7 @@ const forks = Object.freeze({
// package instead of requiring it to be loaded via a separate <script> tag
return 'shared/forks/Schedule.umd.js';
default:
// For CJS bundles, use the shared NPM package.
// For other bundles, use the shared NPM package.
return null;
}
},
Expand All @@ -149,7 +145,7 @@ const forks = Object.freeze({
// package instead of requiring it to be loaded via a separate <script> tag
return 'shared/forks/ScheduleTracking.umd.js';
default:
// For CJS bundles, use the shared NPM package.
// For other bundles, use the shared NPM package.
return null;
}
},
Expand Down