lib/ember_cli/path_set.rb in ember-cli-rails-0.7.1 vs lib/ember_cli/path_set.rb in ember-cli-rails-0.7.2
- old
+ new
@@ -76,11 +76,19 @@
end
end
end
end
+ def bower_components
+ @bower_components ||= root.join("bower_components")
+ end
+
def npm
@npm ||= app_options.fetch(:npm_path) { which("npm") }
+ end
+
+ def node_modules
+ @node_modules ||= root.join("node_modules")
end
def tee
@tee ||= app_options.fetch(:tee_path) { which("tee") }
end