We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f29ad4 commit c4b593fCopy full SHA for c4b593f
CHANGELOG.md
@@ -1,8 +1,10 @@
1
master
2
------
3
4
+* Fix dependencies check for compile command. [#455]
5
* Introduce the `silent` configuration value. [#445]
6
7
+[#455]: https://github.com/thoughtbot/ember-cli-rails/pull/455
8
[#445]: https://github.com/thoughtbot/ember-cli-rails/pull/445
9
10
0.7.3
lib/ember_cli/shell.rb
@@ -63,14 +63,14 @@ def invalid_ember_dependencies?
63
end
64
65
def clean_ember_dependencies!
66
- ember_dependency_directories.select(&:exist?).each(&:rmtree)
+ ember_dependency_directories.flat_map(&:children).each(&:rmtree)
67
68
69
def ember_dependency_directories
70
[
71
paths.node_modules,
72
paths.bower_components,
73
- ]
+ ].select(&:exist?)
74
75
76
def spawn(command)
0 commit comments