-
Notifications
You must be signed in to change notification settings - Fork 943
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
Fix exposing of .env variables in Create React App #560
Open
moos
wants to merge
13
commits into
debug-js:master
Choose a base branch
from
moos:fix-cra-env
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
b7816c0
fix exposing of .env variables in Create React App
moos 3d42235
minor fixes
moos 80ae3ae
take II - completely separate Electron path, add convenience npm scri…
moos fb16b70
Merge pull request #1 from visionmedia/master
moos c9c6c70
fix exposing of .env variables in Create React App
moos 76e69d2
minor fixes
moos 11cc167
take II - completely separate Electron path, add convenience npm scri…
moos f348d51
Merge branch 'fix-cra-env' of https://github.com/moos/debug into fix-…
moos 52d06bf
Update after rebasing from upstream
moos 0fa1a28
fix lint, add more test cases and coverage
moos 4065feb
hmmm... - fix travis-only failure!
moos 9a8a9cd
unable to get istanbul to work on travis combining two runs -- upgrad…
moos 86c9684
fix for old npm version
moos File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ npm-debug.log | |
yarn-error.log | ||
/dist/ | ||
/coverage/ | ||
.nyc_output/ | ||
|
||
# lockfiles | ||
yarn.lock | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,14 @@ exports.load = load; | |
exports.useColors = useColors; | ||
exports.storage = localstorage(); | ||
|
||
/** | ||
* Are we in Electron? | ||
* @returns {boolean} | ||
*/ | ||
function isElectron() { | ||
return typeof process !== 'undefined' && (process.type === 'renderer' || process.__nwjs); | ||
} | ||
|
||
/** | ||
* Colors. | ||
*/ | ||
|
@@ -106,7 +114,7 @@ function useColors() { | |
// NB: In an Electron preload script, document will be defined but not fully | ||
// initialized. Since we know we're in Chrome, we'll just detect this case | ||
// explicitly | ||
if (typeof window !== 'undefined' && window.process && (window.process.type === 'renderer' || window.process.__nwjs)) { | ||
if (isElectron()) { | ||
return true; | ||
} | ||
|
||
|
@@ -204,20 +212,12 @@ function save(namespaces) { | |
* @api private | ||
*/ | ||
function load() { | ||
let r; | ||
try { | ||
r = exports.storage.getItem('debug'); | ||
return exports.storage.getItem('debug'); | ||
} catch (error) { | ||
// Swallow | ||
// XXX (@Qix-) should we be logging these? | ||
} | ||
|
||
// If debug isn't set in LS, and we're in Electron, try to load $DEBUG | ||
if (!r && typeof process !== 'undefined' && 'env' in process) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the critical part that was exposing |
||
r = process.env.DEBUG; | ||
} | ||
|
||
return r; | ||
} | ||
|
||
/** | ||
|
@@ -242,18 +242,23 @@ function localstorage() { | |
} | ||
} | ||
|
||
module.exports = require('./common')(exports); | ||
if (isElectron()) { | ||
module.exports = exports; | ||
module.exports.humanize = require('ms'); | ||
} else { | ||
module.exports = require('./common')(exports); | ||
|
||
const {formatters} = module.exports; | ||
const {formatters} = module.exports; | ||
|
||
/** | ||
* Map %j to `JSON.stringify()`, since no Web Inspectors do that by default. | ||
*/ | ||
/** | ||
* Map %j to `JSON.stringify()`, since no Web Inspectors do that by default. | ||
*/ | ||
|
||
formatters.j = function (v) { | ||
try { | ||
return JSON.stringify(v); | ||
} catch (error) { | ||
return '[UnexpectedJSONParseError]: ' + error.message; | ||
} | ||
}; | ||
formatters.j = function (v) { | ||
try { | ||
return JSON.stringify(v); | ||
} catch (error) { | ||
return '[UnexpectedJSONParseError]: ' + error.message; | ||
} | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
exports = require('./browser'); | ||
|
||
const browserLoad = exports.load; | ||
|
||
// If debug isn't set in LS, and we're in Electron, try to load $DEBUG | ||
exports.load = function () { | ||
let r = browserLoad(); | ||
if (!r && 'env' in process) { | ||
r = process.env.DEBUG; | ||
} | ||
return r; | ||
}; | ||
|
||
module.exports = require('./common')(exports); | ||
|
||
const {formatters} = module.exports; | ||
|
||
/** | ||
* Map %j to `JSON.stringify()`, since no Web Inspectors do that by default. | ||
*/ | ||
|
||
formatters.j = function (v) { | ||
try { | ||
return JSON.stringify(v); | ||
} catch (error) { | ||
return '[UnexpectedJSONParseError]: ' + error.message; | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So we can see that browser env was selected.