From 0783a35c6b5df69c0079505be011de1720613219 Mon Sep 17 00:00:00 2001 From: jero Date: Tue, 30 Jul 2019 22:31:08 -0500 Subject: [PATCH] fix(server/index.js): disable import/no-extraneous-dependencies for 'path' module that's why the server compilation was failing, so in order to allow the compilation proceed, that eslint error should be disable fix #18 --- src/server/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/server/index.js b/src/server/index.js index da0d7137..0067930f 100644 --- a/src/server/index.js +++ b/src/server/index.js @@ -7,6 +7,7 @@ import type { NextFunction, } from 'express'; import cors from 'cors'; +// eslint-disable-next-line import/no-extraneous-dependencies import path from 'path'; import chalk from 'chalk'; // "express-manifest-helpers" has not compatible Flow version