JWally / jsLPSolver

Simple OOP javaScript library to solve linear programs, and mixed integer linear programs
The Unlicense
420 stars 69 forks source link

Documentation: Webpack IgnorePlugin #115

Closed derekphilipau closed 3 years ago

derekphilipau commented 3 years ago

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!