Commit ce3ba2a4 authored by JC Brand's avatar JC Brand

Fix linting errors

parent 0575ca48
/*global path, __dirname, module */ /*global path, __dirname, module, process */
'use strict' 'use strict'
const minimist = require('minimist'); const minimist = require('minimist');
const path = require('path'); const path = require('path');
...@@ -120,17 +120,13 @@ const config = { ...@@ -120,17 +120,13 @@ const config = {
} }
} }
function getCLIArgument (name) {
return value;
}
function extend (o1, o2) { function extend (o1, o2) {
for (let i in o2) { for (var i in o2) {
if (o2.hasOwnProperty(i)) { if (Object.prototype.hasOwnProperty.call(o2, i)) {
o1[i] = o2[i]; o1[i] = o2[i];
} }
} }
}; }
function parameterize () { function parameterize () {
const type = minimist(process.argv.slice(2)).type; const type = minimist(process.argv.slice(2)).type;
...@@ -175,7 +171,7 @@ function parameterize () { ...@@ -175,7 +171,7 @@ function parameterize () {
if (mode === 'production') { if (mode === 'production') {
console.log("Making a production build"); console.log("Making a production build");
let fn = config.output.filename; const fn = config.output.filename;
config.output.filename = `${fn.replace(/\.js$/, '')}.min.js`; config.output.filename = `${fn.replace(/\.js$/, '')}.min.js`;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment