roojs-ui.js
[roojs1] / buildSDK / less-bootstrap-compiler.php
index 5327c13..be9fce7 100644 (file)
@@ -2,7 +2,8 @@
 
 $cwd = getcwd();
 
-if (array_pop(explode('/', $cwd)) !== 'roojs1') {
+$cc = explode('/', $cwd);
+if (array_pop($cc) !== 'roojs1') {
     echo "this should be run in roojs1 directory...\n";
     exit;
 }
@@ -16,66 +17,116 @@ ini_set('include_path',
 $rootDir = dirname(__FILE__) . '/../..';
 
 $files = array(
-    array(
-        'less' => array(
-            'directory' => "{$rootDir}/roojs1/less/bootstrap",
-            'name' => 'bootstrap'
-        ),
-        'css' => array(
-            'directory' => "{$rootDir}/roojs1/css-bootstrap/",
-            'name' => 'bootstrap'
-        )
+    "{$rootDir}/roojs1/less/bootstrap/bootstrap.less" => array(
+        'baseDir' => "{$rootDir}/roojs1/css-bootstrap",
+        'name' => 'bootstrap.css',
+        'minify' => 'bootstrap.min.css',
+        'sourceMapRootpath' => '../less/bootstrap/',
+        'variables' => array("@import 'variables.less';")
     ),
-    array(
-        'less' => array(
-            'directory' => "{$rootDir}/roojs1/less/roojs-bootstrap",
-            'name' => 'roojs-bootstrap'
-        ),
-        'css' => array(
-            'directory' => "{$rootDir}/roojs1/css-bootstrap/",
-            'name' => 'roojs-bootstrap'
-        )
+    "{$rootDir}/roojs1/less/bootstrap/bootstrap-light.less" => array(
+        'baseDir' => "{$rootDir}/roojs1/css-bootstrap",
+        'name' => 'bootstrap-light.css',
+        'minify' => 'bootstrap-light.min.css',
+        'sourceMapRootpath' => '../less/bootstrap/',
+        'variables' => array("@import 'variables.less';")
+    ),
+    
+    "{$rootDir}/roojs1/less/roojs-bootstrap/roojs-bootstrap.less" => array(
+        'baseDir' => "{$rootDir}/roojs1/css-bootstrap",
+        'name' => 'roojs-bootstrap-debug.css',
+        'minify' => 'roojs-bootstrap.css',
+        'sourceMapRootpath' => '../less/roojs-bootstrap/',
+        'variables' => array("@import '../bootstrap/variables.less';")
     )
 );
 
-print_R($files);exit;
+foreach ($files as $src => $file){
+    
+    $css = "{$file['baseDir']}/{$file['name']}";
+    
+    if(!file_exists($css)){
+        continue;
+    }
+    
+    $dir = "{$file['baseDir']}/{$file['sourceMapRootpath']}";
+    
+    $variable = "{$dir}variables.less";
+    
+    if(file_exists($variable) && filemtime("{$dir}variables.less") > filemtime($css)){
+        continue;
+    }
+    
+    $isLatest = true;
+    
+    foreach(scandir($dir) as $f) {
+                
+        if (!strlen($f) || $f[0] == '.') {
+            continue;
+        }
 
-require_once 'HTML/Less.php';
+        $less = "{$dir}{$f}";
         
-$less = new HTML_Less();
-
-require_once 'HTML/CSS/Minify.php';
+        if(filemtime($less) > filemtime($css)){
+            $isLatest = false;
+            break;
+        }
+    }
+    
+    if($isLatest){
+        echo "{$css} already up-to-date \n";
+        unset($files[$src]);
+    }
+    
+}
 
-$minify = new HTML_CSS_Minify();
+require_once 'HTML/Less.php';
 
-foreach ($files as $less => $file){
+foreach ($files as $src => $file){
 
-    if(!file_exists($less)){
+    if(!file_exists($src)){
         echo "{$less} does not exist...\n";
         continue;
     }
-
-    print_R($file);
-    exit;
+    
     try {
         
-        $css = "{$file['directory']}{$file['name']}.css";
+        $less = new HTML_Less();
         
-        echo "Compiling - {$less} To {$css}\n";
+        $less->setOptions(array(
+            'variables' => $file['variables'],
+            'sourceMap' => true,
+            'sourceMapWriteTo' => "{$file['baseDir']}/{$file['name']}.map",
+            'sourceMapURL' => "{$file['name']}.map",
+            'sourceMapRootpath' => $file['sourceMapRootpath'],
+            'sourceMapBasepath' => dirname(realpath($src))
+        ));
         
-        $less->compileFile($less, $css);
+        $css = "{$file['baseDir']}/{$file['name']}";
         
-        if(!file_exists($css)){
-            echo "Compile failed?!\n";
-            continue;
-        }
+        echo "Compiling - {$src} To {$css}\n";
         
+        $less->compileFile($src, $css);
         
+        $min = "{$file['baseDir']}/{$file['minify']}";
+        
+        $less = new HTML_Less();
+        
+        $less->setOptions(array(
+            'compress' => true,
+            'variables' => $file['variables'],
+            'sourceMap' => true,
+            'sourceMapWriteTo' => "{$file['baseDir']}/{$file['minify']}.map",
+            'sourceMapURL' => "{$file['minify']}.map",
+            'sourceMapRootpath' => $file['sourceMapRootpath'],
+            'sourceMapBasepath' => dirname(realpath($src))
+        ));
+        
+        echo "Minifing - {$src} To {$min}\n";
+        
+        $less->compileFile($src, $min);
         
-
     } catch (Exception $ex) {
         echo "lessphp fatal error: {$ex->getMessage()}\n";
     }
-    
-
 }
\ No newline at end of file