Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ export type PluginOptions = Partial<{
panicThreshold: PanicThresholdOptions;

/**
* @deprecated
* @deprecated Use `outputMode` instead. This option will be removed in a future version.
*
* When enabled, Forget will continue statically analyzing and linting code, but skip over codegen
* passes.
* When enabled, the compiler will continue statically analyzing and linting code, but skip over
* codegen passes.
*
* NOTE: ignored if `outputMode` is specified
* NOTE: This option is ignored if `outputMode` is specified.
*
* Defaults to false
*/
Expand Down
1 change: 0 additions & 1 deletion scripts/error-codes/codes.json
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,6 @@
"352": "React Lazy Components are not yet supported on the server.",
"353": "A server block should never encode any other slots. This is a bug in React.",
"354": "getInspectorDataForViewAtPoint() is not available in production.",
"355": "The object passed back from useOpaqueIdentifier is meant to be passed through to attributes only. Do not read the value directly. (TODO: This feature was never released so we should be able to remove this error from the map.)",
"356": "Could not read the cache.",
"357": "The current renderer does not support React Scopes. This error is likely caused by a bug in React. Please file an issue.",
"358": "Invalid update priority: %s. This is a bug in React.",
Expand Down
1 change: 0 additions & 1 deletion scripts/rollup/shims/react-native/ReactNative.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import type {ReactNativeType} from './ReactNativeTypes';

let ReactNative: ReactNativeType;

// TODO: Delete the legacy renderer. Only ReactFabric is used now.
if (__DEV__) {
ReactNative = require('../implementations/ReactNativeRenderer-dev');
} else {
Expand Down