Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TypeScript error #30

Open
mzch opened this issue Oct 10, 2020 · 5 comments
Open

TypeScript error #30

mzch opened this issue Oct 10, 2020 · 5 comments

Comments

@mzch
Copy link

mzch commented Oct 10, 2020

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

> client@0.1.0 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! client@0.1.0 build: `react-scripts build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the client@0.1.0 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
Copy link
Author

mzch commented Oct 10, 2020

Sorry, the original issue is as below:

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

> client@0.1.0 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! client@0.1.0 build: `react-scripts build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the client@0.1.0 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

@anuraghazra
Copy link
Owner

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

@mzch
Copy link
Author

mzch commented Oct 10, 2020

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 xxx@mzch.org, but Bugvilla reported "email" must be a valid email.
Should I create a new ticket?

@anuraghazra
Copy link
Owner

Only gmail is allowed.

@mzch
Copy link
Author

mzch commented Oct 10, 2020

I see.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants