Skip to content

Commit

Permalink
fix: change carbon to reactNative (#762)
Browse files Browse the repository at this point in the history
  • Loading branch information
vcellu committed Feb 14, 2022
1 parent 51be0a4 commit 4aeaa5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/build/lib/resolveNative.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ const fs = require('fs');
// this plugin will check if there is a corresponding .native file for the input file and output the contents of the native file
// This plugin should be loaded first.

module.exports = ({ carbon }) => ({
module.exports = ({ reactNative }) => ({
async load(id) {
if (!carbon) {
if (!reactNative) {
return null;
}
if (id) {
Expand Down

0 comments on commit 4aeaa5a

Please sign in to comment.