diff options
author | RabsRincon <rubrinbla@gmail.com> | 2018-06-15 15:04:55 +0200 |
---|---|---|
committer | RabsRincon <rubrinbla@gmail.com> | 2018-06-15 15:04:55 +0200 |
commit | 7c18ffe8cf1a0900f101d4cbf135814ea9cfea28 (patch) | |
tree | d33fd13c5ef6141293dec45f59f73078a867122d /lib/compilers/argument-parsers.js | |
parent | 96c93c6bf3e125da3326081e5626e3e765e8a36e (diff) | |
download | compiler-explorer-7c18ffe8cf1a0900f101d4cbf135814ea9cfea28.tar.gz compiler-explorer-7c18ffe8cf1a0900f101d4cbf135814ea9cfea28.zip |
Drop underscore-node in favour of underscore.js
After some suprises about how outdated the node version was compared to
the main project, it became clear we needed to do something.
@jaredwy suggested using the main project as there's now nothing
stopping us from using it after the switch to webpack.
cc @mattgodbolDrop underscore-node in favour of underscore.js
Diffstat (limited to 'lib/compilers/argument-parsers.js')
-rw-r--r-- | lib/compilers/argument-parsers.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/argument-parsers.js b/lib/compilers/argument-parsers.js index cb9b33442..b3fbcfe32 100644 --- a/lib/compilers/argument-parsers.js +++ b/lib/compilers/argument-parsers.js @@ -22,7 +22,7 @@ // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. -const _ = require('underscore-node'), +const _ = require('underscore'), logger = require('../logger').logger, utils = require('../utils'); |