mirror of
https://github.com/fergalmoran/dss.api.git
synced 2025-12-22 17:28:55 +00:00
28 lines
594 B
Python
Executable File
28 lines
594 B
Python
Executable File
PIPELINE_CSS = {
|
|
'css': {
|
|
'source_filenames': (
|
|
'css/*.css',
|
|
),
|
|
'variant': 'datauri',
|
|
'output_filename': 'css/c.css'
|
|
},
|
|
'embedding': {
|
|
'source_filenames': (
|
|
'css/embedding/*.css',
|
|
),
|
|
'variant': 'datauri',
|
|
'output_filename': 'css/e.css'
|
|
}
|
|
}
|
|
|
|
PIPELINE_JS = {
|
|
'embedding': {
|
|
'source_filenames': (
|
|
'js/embedding/jquery.js',
|
|
'js/embedding/jplayer.js',
|
|
'js/embedding/jplayer.cleanskin.js',
|
|
),
|
|
'output_filename': 'js/e.js',
|
|
},
|
|
}
|