Skip to content

Commit

Permalink
Common packages list shouldn't be in utils
Browse files Browse the repository at this point in the history
  • Loading branch information
JedWatson committed May 13, 2016
1 parent ccfde7e commit 85e2e87
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion admin/server/middleware/browserify.js
Expand Up @@ -4,7 +4,7 @@ var chalk = require('chalk');
var crypto = require('crypto'); var crypto = require('crypto');
var fs = require('fs-extra'); var fs = require('fs-extra');
var moment = require('moment'); var moment = require('moment');
var packages = require('../../client/utils/packages'); var packages = require('../../client/packages');
var path = require('path'); var path = require('path');
var watchify = require('watchify'); var watchify = require('watchify');


Expand Down
2 changes: 1 addition & 1 deletion build.js
@@ -1,6 +1,6 @@
var browserify = require('browserify'); var browserify = require('browserify');


var packages = require('./admin/client/utils/packages'); var packages = require('./admin/client/packages');
var b = browserify({ var b = browserify({
debug: process.env.NODE_ENV !== 'production', debug: process.env.NODE_ENV !== 'production',
}); });
Expand Down

0 comments on commit 85e2e87

Please sign in to comment.