mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
15 lines
223 B
Text
15 lines
223 B
Text
|
#!/usr/bin/env rake
|
||
|
|
||
|
require 'bundler/setup'
|
||
|
require 'thor'
|
||
|
|
||
|
$LOAD_PATH.unshift 'lib'
|
||
|
|
||
|
namespace :assets do
|
||
|
desc 'Compile all assets'
|
||
|
task :precompile do
|
||
|
load 'tasks/assets.thor'
|
||
|
AssetsCLI.new.compile
|
||
|
end
|
||
|
end
|