Closed ryanartecona closed 7 years ago
Sorry, I recently introduced a bug that I thought I had pushed a fix for but I guess that change somehow got lost when committing. I've been working on improving the web environment here which has involved some more back and forth between branches than usual so I think that's what caused the mixup.
My guess would be that webpack was complaining because other files couldn't build as a result of Reprocessing_ClientWrapper failing to build, hopefully that will be resolved by this fix as well (lmk if not)
Nice! No worries at all, thanks. Looks like that fixed it all for me, and your guess was correct.
Following up after #34, I ran into some trouble after doing
npm update Reprocessing
.My
bsb -clean-world -make-world -w
gave me this error:And my webpack was also unhappy:
Looking into it a tiny bit, it appears those files are indeed missing inside my
node_modules
dir:
``` $ tree node_modules/Reprocessing node_modules/Reprocessing/ ├── README.md ├── assets │ ├── font │ │ ├── font.fnt │ │ └── font.png │ └── img_test.png ├── bsconfig.json ├── deploy.sh ├── examples │ ├── index.re │ ├── noise.re │ └── redsquare.re ├── index.html ├── lib │ ├── bs │ │ ├── build.ninja │ │ └── src │ │ ├── Reprocessing.mlast │ │ ├── Reprocessing.mlast.d │ │ ├── Reprocessing.mliast │ │ ├── Reprocessing.mliast.d │ │ ├── Reprocessing_ClientWrapper.cmt │ │ ├── Reprocessing_ClientWrapper.mlast │ │ ├── Reprocessing_ClientWrapper.mlast.d │ │ ├── Reprocessing_Common.mlast │ │ ├── Reprocessing_Common.mlast.d │ │ ├── Reprocessing_Constants.mlast │ │ ├── Reprocessing_Constants.mlast.d │ │ ├── Reprocessing_Constants.mliast │ │ ├── Reprocessing_Constants.mliast.d │ │ ├── Reprocessing_Draw.mlast │ │ ├── Reprocessing_Draw.mlast.d │ │ ├── Reprocessing_Draw.mliast │ │ ├── Reprocessing_Draw.mliast.d │ │ ├── Reprocessing_Env.mlast │ │ ├── Reprocessing_Env.mlast.d │ │ ├── Reprocessing_Env.mliast │ │ ├── Reprocessing_Env.mliast.d │ │ ├── Reprocessing_Events.cmi │ │ ├── Reprocessing_Events.cmj │ │ ├── Reprocessing_Events.cmt │ │ ├── Reprocessing_Events.mlast │ │ ├── Reprocessing_Events.mlast.d │ │ ├── Reprocessing_Font.mlast │ │ ├── Reprocessing_Font.mlast.d │ │ ├── Reprocessing_Internal.mlast │ │ ├── Reprocessing_Internal.mlast.d │ │ ├── Reprocessing_Matrix.cmi │ │ ├── Reprocessing_Matrix.cmj │ │ ├── Reprocessing_Matrix.cmt │ │ ├── Reprocessing_Matrix.mlast │ │ ├── Reprocessing_Matrix.mlast.d │ │ ├── Reprocessing_Shaders.cmi │ │ ├── Reprocessing_Shaders.cmj │ │ ├── Reprocessing_Shaders.cmt │ │ ├── Reprocessing_Shaders.mlast │ │ ├── Reprocessing_Shaders.mlast.d │ │ ├── Reprocessing_Types.mlast │ │ ├── Reprocessing_Types.mlast.d │ │ ├── Reprocessing_Utils.mlast │ │ ├── Reprocessing_Utils.mlast.d │ │ ├── Reprocessing_Utils.mliast │ │ └── Reprocessing_Utils.mliast.d │ └── js │ └── src │ ├── reprocessing_Events.js │ ├── reprocessing_Matrix.js │ └── reprocessing_Shaders.js ├── package.json ├── require_polyfill.js ├── src │ ├── Reprocessing.re │ ├── Reprocessing.rei │ ├── Reprocessing_ClientWrapper.re │ ├── Reprocessing_Common.re │ ├── Reprocessing_Constants.re │ ├── Reprocessing_Constants.rei │ ├── Reprocessing_Draw.re │ ├── Reprocessing_Draw.rei │ ├── Reprocessing_Env.re │ ├── Reprocessing_Env.rei │ ├── Reprocessing_Events.re │ ├── Reprocessing_Font.re │ ├── Reprocessing_Internal.re │ ├── Reprocessing_Matrix.re │ ├── Reprocessing_Shaders.re │ ├── Reprocessing_Types.re │ ├── Reprocessing_Utils.re │ └── Reprocessing_Utils.rei └── webenv-artifacts ├── Reprocessing_ClientWrapper.re ├── Reprocessing_Ext.re ├── deploy.sh ├── entrypoint.js └── reprocessing-bundle.js 10 directories, 85 files ```tree node_modules/Reprocessing