Ignore .remix.config in files.listAsTree()

pull/1/head
Alex Beregszaszi 8 years ago
parent 7286c9a3d1
commit ef6865a129
  1. 5
      src/app/files.js

@ -139,6 +139,11 @@ function Files (storage) {
var self = this
storage.keys().forEach(function (path) {
// NOTE: as a temporary measure do not show the config file
if (path === '.remix.config') {
return
}
hashmapize(tree, path, {
'/readonly': self.isReadOnly(path),
'/content': self.get(path)

Loading…
Cancel
Save