dlai0001 / sudoku-generator

Library for generating sudoku puzzles
MIT License
10 stars 4 forks source link

names.push is not a function #7

Open westonganger opened 7 years ago

westonganger commented 7 years ago

I was getting the following error from your plugin

names.push is not a function

I dug into it and its related to the dependency injection library: dependable. The library is in poor shape and should be dropped.

westonganger commented 7 years ago

It wasnt dependable. It was lodash for some odd reason. The only real reason you were using lodash for was the _.range function but that was so easily replaceable.

Once I removed lodash from the project it start working.

I will create a PR with all my fixes soon.

westonganger commented 7 years ago

Just created PR #8 which fixes this bug.