forked from falling-sky/source
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.inc
More file actions
24 lines (15 loc) · 735 Bytes
/
config.inc
File metadata and controls
24 lines (15 loc) · 735 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
#! /bin/echo used by build.pl
# NOTE
# You can create "config.inc.local" to override anything you see here.
# For mirror sites, this might make tracking test-ipv6.com's code easier.
use strict;
$COMPRESS{"js"} = "uglifyjs [INPUT] -o [OUTPUT] -c --warnings=false --source-map [INPUT].map --stats -b ";
$COMPRESS{"css"} = "cssmin < [INPUT] > [OUTPUT]";
$COMPRESS{"html"} = "tidy -quiet -indent -asxhtml -utf8 -w 120 --show-warnings false < [INPUT] > [OUTPUT]";
$INSTALL = "work";
chomp($VARS->{"hostname"} = `hostname`);
# # Stop running yuicompressor, harder to debug
# # Warning: Much larger bandwidth requirements.
# $COMPRESS{"js"} = "cat < [INPUT] > [OUTPUT]";
# $COMPRESS{"css"} = "cat < [INPUT] > [OUTPUT]";
1;