Skip to content

Commit

Permalink
Move the 'config file'
Browse files Browse the repository at this point in the history
  • Loading branch information
eGavr committed Sep 3, 2014
1 parent e1f4aaa commit 3bc6125
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions lib/config.js → .cmb/config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
var path = require('path'),
fs = require('fs'),
minimize = require('./utils').minimize,
archive = require('./utils').archive;
utils = require('../lib/utils'),
minimize = utils.minimize,
archive = utils.archive;

module.exports = {
// each method is the imitation of the usage of some minimizer
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var fs = require('fs'),
path = require('path'),
shell = require('shelljs'),
bench = require('./config'),
bench = require('../.cmb/config'),
utils = require('./utils'),
minimizers = bench.minimizers,
archivers = bench.archivers,
Expand Down

0 comments on commit 3bc6125

Please sign in to comment.