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

Adjust hiding of require() calls for react-native #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ function formatSpecDescription(spec) {
function extendWithDotEnv(inputEnv, dotEnvPath = '.env') {
// fs and dotenv cannot be required inside react-native.
// The react-native packager detects the require calls even if they
// are not on the top level, so we need to hide them by concatinating
// the module names.
const fs = require('f' + 's')
const dotenv = require('doten' + 'v')
// are not on the top level, so we need to obfuscate them
const _require = require
const fs = _require('fs')
const dotenv = _require('dotenv')

let dotEnvBuffer = null
try {
Expand Down