BugVilla icon indicating copy to clipboard operation
BugVilla copied to clipboard

TypeScript error

Open mzch opened this issue 3 years ago • 5 comments

TypeScript error occurred on cd client && npm run build

  • Node.js: 12.18.4
  • npm: 6.14.8
  • OS: Debian 10.6
bugvilla@de:~/BugVilla/client$ npm run build

> [email protected] build /srv/bugvilla/BugVilla/client
> react-scripts build

Creating an optimized production build...
Failed to compile.

/srv/bugvilla/BugVilla/client/src/@bug-ui/Button.tsx
TypeScript error in /srv/bugvilla/BugVilla/client/src/@bug-ui/Button.tsx(95,28):
Type of property 'defaultProps' circularly references itself in mapped type 'Pick<ForwardRefExoticComponent<Pick<Pick<any, Exclude<keyof ReactDefaultizedProps<StyledComponentInnerComponent<WithC>, ComponentPropsWithRef<StyledComponentInnerComponent<WithC>>>, any>> & Partial<...>, any> & { ...; } & WithChildrenIfReactComponentClass<...>>, "defaultProps" | ... 2 more ... | "$$typeof">'.  TS2615

    93 |   right: `margin-left: auto;`
    94 | };
  > 95 | export const ButtonGroup = styled(Flex)<{ float?: string }>`
       |                            ^
    96 |   width: fit-content;
    97 |
    98 |   ${p => ButtonGroupFloat[p.float || 'right']}


npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] build: `react-scripts build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /srv/bugvilla/.npm/_logs/2020-10-10T03_37_29_718Z-debug.log

mzch avatar Oct 10 '20 03:10 mzch

Sorry, the original issue is as below:

bugvilla@de:~/BugVilla/client$ npm run build

> [email protected] build /srv/bugvilla/BugVilla/client
> react-scripts build


There might be a problem with the project dependency tree.
It is likely not a bug in Create React App, but something you need to fix locally.

The react-scripts package provided by Create React App requires a dependency:

  "webpack": "4.42.0"

Don't try to install it manually: your package manager does it automatically.
However, a different version of webpack was detected higher up in the tree:

  /srv/bugvilla/BugVilla/client/node_modules/webpack (version: 4.41.5)

Manually installing incompatible versions is known to cause hard-to-debug issues.

If you would prefer to ignore this check, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
That will permanently disable this message but you might encounter other issues.

To fix the dependency tree, try following the steps below in the exact order:

  1. Delete package-lock.json (not package.json!) and/or yarn.lock in your project folder.
  2. Delete node_modules in your project folder.
  3. Remove "webpack" from dependencies and/or devDependencies in the package.json file in your project folder.
  4. Run npm install or yarn, depending on the package manager you use.

In most cases, this should be enough to fix the problem.
If this has not helped, there are a few other things you can try:

  5. If you used npm, install yarn (http://yarnpkg.com/) and repeat the above steps with it instead.
     This may help because npm has known issues with package hoisting which may get resolved in future versions.

  6. Check if /srv/bugvilla/BugVilla/client/node_modules/webpack is outside your project directory.
     For example, you might have accidentally installed something in your home folder.

  7. Try running npm ls webpack in your project folder.
     This will tell you which other package (apart from the expected react-scripts) installed webpack.

If nothing else helps, add SKIP_PREFLIGHT_CHECK=true to an .env file in your project.
That would permanently disable this preflight check in case you want to proceed anyway.

P.S. We know this message is long but please read the steps above :-) We hope you find them helpful!

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] build: `react-scripts build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /srv/bugvilla/.npm/_logs/2020-10-10T04_07_03_458Z-debug.log

mzch avatar Oct 10 '20 04:10 mzch

For the second comment -

Add a ".env" file in the client root folder with the content "SKIP_PREFLIGHT_CHECK=true"

Not sure about the first one tho, if not solved try @ts-ignore

anuraghazra avatar Oct 10 '20 04:10 anuraghazra

Thanks! Fixed this, but Bugvilla didn't send a verify mail. I visited SendGrid console and I found no mail relayed. Next, I tried to register an account using [email protected], but Bugvilla reported "email" must be a valid email. Should I create a new ticket?

mzch avatar Oct 10 '20 09:10 mzch

Only gmail is allowed.

anuraghazra avatar Oct 10 '20 10:10 anuraghazra

I see.

mzch avatar Oct 10 '20 10:10 mzch