mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-30 02:07:50 +08:00
11 lines
269 B
Ruby
11 lines
269 B
Ruby
desc 'Build docs'
|
|
task :build do
|
|
dest = ENV['dest'] || CONFIG[:build_destination]
|
|
|
|
Rake::Task['build_toc'].invoke
|
|
Rake::Task['build_ui_config'].invoke
|
|
Rake::Task['prepare_assets'].invoke
|
|
|
|
command = "jekyll build --trace --destination=#{dest}"
|
|
sh command
|
|
end |