-
Notifications
You must be signed in to change notification settings - Fork 37
/
td_less_style.css.php
41 lines (35 loc) · 1.11 KB
/
td_less_style.css.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
/**
* Used only on dev! - it is removed from the package by our deploy ;)
* V2.1
*/
/**
* STOP!
* WARNING!!! This file is also used by the deploy system of the theme and it's not included with the deployed theme
*/
// this array is used by td_deploy to compile all the files
// it is also used by the live compiler
global $td_less_files;
$td_less_files = array (
'style.css_v2' => array (
'source' => 'includes/less_files/main.less',
'destination' => 'style.css'
),
'editor-style' => array (
'source' => 'includes/less_files/editor-style.less',
'destination' => 'editor-style.css'
),
'wp-admin.css' => array (
'source' => 'includes/wp_booster/wp-admin/css/wp-admin.less',
'destination' => 'includes/wp_booster/wp-admin/css/wp-admin.css'
),
'viral' => array (
'source' => 'includes/demos/viral/demo_style.less',
'destination' => 'includes/demos/viral/demo_style.css'
),
'voyage' => array (
'source' => 'includes/demos/voyage/demo_style.less',
'destination' => 'includes/demos/voyage/demo_style.css'
),
);
require_once 'includes/wp_booster/external/td_node_less/td_less_compiler.php';