Closed derekphilipau closed 3 years ago
Suggest changing: new webpack.IgnorePlugin(/(fs|child_process)/), to: new webpack.IgnorePlugin(/(^fs$|^child_process$)/),
new webpack.IgnorePlugin(/(fs|child_process)/),
new webpack.IgnorePlugin(/(^fs$|^child_process$)/),
(Likelyhood of a dependency name that includes the string "fs" is quite high, was causing issues in my project.)
Also it would be nice to have a paragraph about the solve methods employed so that people learning lp like me can learn about them.
After spending days mucking about with math.js matrices, really happy to have found this awesome project, thank you!
Suggest changing:
new webpack.IgnorePlugin(/(fs|child_process)/),
to:new webpack.IgnorePlugin(/(^fs$|^child_process$)/),
(Likelyhood of a dependency name that includes the string "fs" is quite high, was causing issues in my project.)
Also it would be nice to have a paragraph about the solve methods employed so that people learning lp like me can learn about them.
After spending days mucking about with math.js matrices, really happy to have found this awesome project, thank you!