Beispiel #1
0
 def handle(self, *args, **options):
     combine_and_compress(
                             in_folder='sass',
                             in_ext='scss',
                             out_ext='css',
                             compress_funct=compress,
                             compile_funct=sass.compile_string,
                         )
Beispiel #2
0
 def handle(self, *args, **options):
     combine_and_compress(
                             in_folder='js',
                             in_ext='js',
                             out_ext='js',
                             compress_funct=uglipyjs.compile,
                             compile_funct=None,
                         )