We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 377e574 commit 374d3e3Copy full SHA for 374d3e3
packages/ember/config/ember-try.js
@@ -3,7 +3,9 @@
3
const getChannelURL = require('ember-source-channel-url');
4
const { embroiderSafe } = require('@embroider/test-setup');
5
6
-console.log(process.env.sort());
+Object.keys(process.env)
7
+ .sort()
8
+ .map(key => console.log(key, process.env[key]));
9
10
module.exports = async function() {
11
return {
0 commit comments