===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
node-grunt-webpack-3.1.3/tasks/webpack-dev-server.js-7-  // Make text blue and bold, so it *pops*
node-grunt-webpack-3.1.3/tasks/webpack-dev-server.js:8:  if (useColor) return `\u001b[1m\u001b[34m${msg}\u001b[39m\u001b[22m`;
node-grunt-webpack-3.1.3/tasks/webpack-dev-server.js-9-
##############################################
node-grunt-webpack-3.1.3/tasks/webpack-dev-server.js-15-
node-grunt-webpack-3.1.3/tasks/webpack-dev-server.js:16:  grunt.log.writeln((options.progress ? '\n' : '') + `Project is running at ${colorInfo(useColor, uri)}`);
node-grunt-webpack-3.1.3/tasks/webpack-dev-server.js-17-
node-grunt-webpack-3.1.3/tasks/webpack-dev-server.js:18:  grunt.log.writeln(`webpack output is served from ${colorInfo(useColor, options.publicPath)}`);
node-grunt-webpack-3.1.3/tasks/webpack-dev-server.js-19-  const contentBase = Array.isArray(options.contentBase) ? options.contentBase.join(', ') : options.contentBase;
node-grunt-webpack-3.1.3/tasks/webpack-dev-server.js-20-  if (contentBase)
node-grunt-webpack-3.1.3/tasks/webpack-dev-server.js:21:    grunt.log.writeln(`Content not from webpack is served from ${colorInfo(useColor, contentBase)}`);
node-grunt-webpack-3.1.3/tasks/webpack-dev-server.js-22-  if (options.historyApiFallback)
node-grunt-webpack-3.1.3/tasks/webpack-dev-server.js:23:    grunt.log.writeln(`404s will fallback to ${colorInfo(useColor, options.historyApiFallback.index || '/index.html')}`);
node-grunt-webpack-3.1.3/tasks/webpack-dev-server.js-24-}
##############################################
node-grunt-webpack-3.1.3/tasks/webpack.js-63-              // add plugin version with and without colors
node-grunt-webpack-3.1.3/tasks/webpack.js:64:              .replace(/(\n(.*)Version: webpack (.*)\d+\.\d+\.\d+(.*))\n/, `$1$2 / grunt-webpack $3${pkg.version}$4\n`)
node-grunt-webpack-3.1.3/tasks/webpack.js-65-          );
##############################################
node-grunt-webpack-3.1.3/tests/utils/assertGrunt.js-3-    success: function assertGruntSuccess() {
node-grunt-webpack-3.1.3/tests/utils/assertGrunt.js:4:      t.is(returnCode, 0, `Grunt exited with an error code. stdout: "${stdout}"`);
node-grunt-webpack-3.1.3/tests/utils/assertGrunt.js-5-
node-grunt-webpack-3.1.3/tests/utils/assertGrunt.js:6:      t.notRegex(stdout, /ERROR/i, `Webpack seems to run into an error. stdout: "${stdout}"`);
node-grunt-webpack-3.1.3/tests/utils/assertGrunt.js-7-    },
node-grunt-webpack-3.1.3/tests/utils/assertGrunt.js-8-    failed: function assertGruntSuccess() {
node-grunt-webpack-3.1.3/tests/utils/assertGrunt.js:9:      t.true(returnCode > 0, `Grunt did not error as expected: "${stdout}"`);
node-grunt-webpack-3.1.3/tests/utils/assertGrunt.js-10-