You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current Behavior
I've created an app using create-react-app and everything was working fine, including the build. I've followed the steps to implement react-snap (installed using npm, modified index.js, and added the postbuild in package.json). When I build now, I get the following error:
> [email protected] postbuild
> react-snap
node:internal/modules/cjs/loader:361
throw err;
^
Error: Cannot find module 'D:\project\node_modules\minimalcss\node_modules\csso\node_modules\css-tree\lib\index'. Please verify that the package.json has a valid "main" entry
at tryPackage (node:internal/modules/cjs/loader:353:19)
at Function.Module._findPath (node:internal/modules/cjs/loader:566:18)
at Function.Module._resolveFilename (node:internal/modules/cjs/loader:919:27)
at Function.Module._load (node:internal/modules/cjs/loader:778:27)
at Module.require (node:internal/modules/cjs/loader:1005:19)
at require (node:internal/modules/cjs/helpers:102:18)
at Object.<anonymous> (D:\project\node_modules\minimalcss\node_modules\csso\lib\index.js:1:15)
at Module._compile (node:internal/modules/cjs/loader:1101:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
at Module.load (node:internal/modules/cjs/loader:981:32) {
code: 'MODULE_NOT_FOUND',
path: 'D:\\project\\node_modules\\minimalcss\\node_modules\\csso\\node_modules\\css-tree\\package.json',
requestPath: 'css-tree'
}
It could be that this is no bug at all and that I'm missing something, but I have no clue and couldn't find something similar online.
Steps to reproduce
I've just created a new react app (using create-react-app) and created some pages. The following dependencies have been added:
Bug Report
Current Behavior
I've created an app using create-react-app and everything was working fine, including the build. I've followed the steps to implement react-snap (installed using npm, modified index.js, and added the postbuild in package.json). When I build now, I get the following error:
It could be that this is no bug at all and that I'm missing something, but I have no clue and couldn't find something similar online.
Steps to reproduce
I've just created a new react app (using create-react-app) and created some pages. The following dependencies have been added:
When I remove the line
"postbuild": "react-snap"
in package.json, I get no build error anymore.Expected behavior/code
I would expect that it just builds. :)
The text was updated successfully, but these errors were encountered: