File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
packages/ember-repl/src/services Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,15 @@ const emberCompilationModules = {
7474 // I *could* actually implement this
7575 dependencySatisfies : ( ) => true ,
7676 isDevelopingApp : ( ) => true ,
77+ // Trying to use warp-drive in a REPL environment may be impossible, since they
78+ // encourage choosing your own adventure without a buildless recommended path.
79+ // The use of nested configs (specifically env) is also problematic for
80+ // "falling back to false" as what all other macros-using libraries use.
81+ // (many of us have seen "Cannot access DEBUG on undefined" in build errors)
82+ // Even with this config, I have not successfully been able to use warp-drive
83+ // in any of my REPL-based projects.
84+ //
85+ // (Its also perfectly fine for warp-drive to decide they don't care about the same things I do)
7786 getGlobalConfig : ( ) => ( {
7887 WarpDrive : {
7988 debug : false ,
You can’t perform that action at this time.
0 commit comments