File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,6 @@ function isFalse(a) {
19
19
) ;
20
20
}
21
21
22
- function inputBoolean ( a , dflt ) {
23
- return ! a ? dflt : ! isFalse ( a ) ;
24
- }
25
-
26
22
function inputArray ( a , dflt ) {
27
23
dflt = dflt . slice ( ) ;
28
24
@@ -42,7 +38,6 @@ if(process.argv.length > 2) {
42
38
var out = args . out ? args . out : 'custom' ;
43
39
var traces = inputArray ( args . traces , allTraces ) ;
44
40
var transforms = inputArray ( args . transforms , allTransforms ) ;
45
- var calendars = inputBoolean ( args . calendars , true ) ;
46
41
47
42
var i , t ;
48
43
@@ -79,7 +74,6 @@ if(process.argv.length > 2) {
79
74
var opts = {
80
75
traceList : traceList ,
81
76
transformList : transformList ,
82
- calendars : calendars ,
83
77
84
78
name : out ,
85
79
index : path . join ( constants . pathToLib , 'index-' + out + '.js' ) ,
@@ -90,6 +84,7 @@ if(process.argv.length > 2) {
90
84
console . log ( opts ) ;
91
85
92
86
opts . sourcemap = true ;
87
+ opts . calendars = true ;
93
88
94
89
var tasks = [ ] ;
95
90
You can’t perform that action at this time.
0 commit comments