mike-north / ember-monaco

Monaco editor for Ember.js apps
BSD 2-Clause "Simplified" License
18 stars 15 forks source link

Can't turn off the creation of the DEBUG folder in the root of the project #238

Open olyckne opened 4 years ago

olyckne commented 4 years ago

Because the DEBUG variable always is set to true it creates a DEBUG folder at the root of the project.

const DEBUG = true || process.env.BROCCOLI_DEBUG;

https://github.com/mike-north/ember-monaco/blob/master/index.js#L17

It works if I change it to const DEBUG = process.env.BROCCOLI_DEBUG; but I'm not sure what else the BROCCOLI_DEBUG environment variable might be used for.

bracke commented 2 years ago

Has there been any progress on this?