forked from cdotyone/mochaui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild
More file actions
32 lines (19 loc) · 690 Bytes
/
build
File metadata and controls
32 lines (19 loc) · 690 Bytes
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
#!/usr/bin/env php
<?php
$stderr = fopen('php://stderr', 'w');
require dirname(__FILE__) . '/Packager/packager.php';
$executable = array_shift($argv);
$package = dirname(__FILE__);
$pkg = new Packager($package . '/package.yml');
fwrite($stderr, "Packager is building MochaUI\n\n");
fwrite($stderr, "Included Components:\n");
$no_compat = false;
$files = (empty($argv)) ? $pkg->get_all_files() : $pkg->components_to_files($argv);
$files = $pkg->complete_files($files);
foreach ($files as $file){
fwrite($stderr, "- $file: [" . implode(", ", $pkg->get_file_provides($file)) . "]\n");
}
$output = $pkg->build($files, array(), array(), array());
echo $output;
fclose($stderr);
?>