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

Use dynamic resolve config to build for react-native #748

Closed

Conversation

mondaychen
Copy link
Contributor

Instead of using different suffix (.native.js), use a different resolve plugin to build for react native support, so we don't have a file that's seemingly useless to codemod bots.

Output:

head native/recoil.js

import reactNative from 'react-native';
import react from 'react';

head cjs/recoil.js

'use strict';

Object.defineProperty(exports, '__esModule', { value: true });

function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }

var reactDom = _interopDefault(require('react-dom'));
var react = _interopDefault(require('react'));

head es/recoil.js

import reactDom from 'react-dom';
import react from 'react';

@facebook-github-bot facebook-github-bot added the CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. label Nov 18, 2020
Copy link
Contributor

@facebook-github-bot facebook-github-bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mondaychen has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator.

@facebook-github-bot
Copy link
Contributor

@mondaychen merged this pull request in 8e1e2ee.

mondaychen added a commit to mondaychen/Recoil that referenced this pull request Dec 15, 2020
AlexGuz23 pushed a commit to AlexGuz23/Recoil that referenced this pull request Nov 3, 2022
Summary:
Instead of using different suffix (.native.js), use a different resolve plugin to build for react native support, so we don't have a file that's seemingly useless to codemod bots.

Output:

head native/recoil.js
```
import reactNative from 'react-native';
import react from 'react';
```
head cjs/recoil.js
```
'use strict';

Object.defineProperty(exports, '__esModule', { value: true });

function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }

var reactDom = _interopDefault(require('react-dom'));
var react = _interopDefault(require('react'));
```

head es/recoil.js
```
import reactDom from 'react-dom';
import react from 'react';
```

Pull Request resolved: facebookexperimental/Recoil#748

Reviewed By: drarmstr

Differential Revision: D25065347

Pulled By: mondaychen

fbshipit-source-id: 743016f4d114af73ed94663adc06f896737e285d
snipershooter0701 pushed a commit to snipershooter0701/Recoil that referenced this pull request Mar 5, 2023
Summary:
Instead of using different suffix (.native.js), use a different resolve plugin to build for react native support, so we don't have a file that's seemingly useless to codemod bots.

Output:

head native/recoil.js
```
import reactNative from 'react-native';
import react from 'react';
```
head cjs/recoil.js
```
'use strict';

Object.defineProperty(exports, '__esModule', { value: true });

function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }

var reactDom = _interopDefault(require('react-dom'));
var react = _interopDefault(require('react'));
```

head es/recoil.js
```
import reactDom from 'react-dom';
import react from 'react';
```

Pull Request resolved: facebookexperimental/Recoil#748

Reviewed By: drarmstr

Differential Revision: D25065347

Pulled By: mondaychen

fbshipit-source-id: 743016f4d114af73ed94663adc06f896737e285d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
build / infra CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. Merged
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants