Skip to content

Commit 294463c

Browse files
committed
Remove only bootstrap starter project depedencies on packaging.
1 parent 4997763 commit 294463c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Rakefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,9 @@ namespace :package do
277277
if target.name == 'Bootstrap'
278278
target.remove_from_project
279279
else
280-
target.dependencies.each(&:remove_from_project)
280+
target.dependencies.each do |dependency|
281+
dependency.remove_from_project if dependency.display_name == 'Bootstrap'
282+
end
281283
end
282284
end
283285
project.save

0 commit comments

Comments
 (0)