Skip to content

Commit

Permalink
Remove debug statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmpfs committed Jul 2, 2016
1 parent 47fc7c5 commit cdfc28a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
node_modules
coverage
target
/components.*
*.bak
*.zip
*.tgz
Expand Down
2 changes: 0 additions & 2 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ function trucks(opts, cb) {
opts.conf = [opts.conf];
}

console.log(opts.conf);

// list of configuration files to require and merge
if (Array.isArray(opts.conf)) {
conf = opts.conf;
Expand Down
10 changes: 2 additions & 8 deletions packages/trucks-cli/cli/trucks.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,8 @@ function main(argv, conf, cb) {

this.files = req.unparsed;

// no stylesheet file path specified, use `components.css` in cwd
if(!this.css) {
this.css = path.join(process.cwd(), 'components.css');
}

// no javascript file path specified, use `components.js` in cwd
if(!this.js) {
this.js = path.join(process.cwd(), 'components.js');
if(!this.out) {
this.out = process.cwd();
}

trucks(this, cb);
Expand Down
2 changes: 0 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ function trucks(opts, cb) {
opts.conf = [opts.conf];
}

console.log(opts.conf);

// list of configuration files to require and merge
if(Array.isArray(opts.conf)) {
conf = opts.conf;
Expand Down

0 comments on commit cdfc28a

Please sign in to comment.