Skip to content

Commit

Permalink
fix(server/index.js): disable import/no-extraneous-dependencies for '…
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
aneurysmjs committed Jul 31, 2019
1 parent 023aa79 commit 0783a35
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0783a35

Please sign in to comment.