nicholasnelson / uncondemned

MIT License
0 stars 0 forks source link

External libs included in repo #2

Open nicholasnelson opened 7 years ago

nicholasnelson commented 7 years ago

Currently some external libs (three.js, cannon.js, three-to-cannon) are included in the lib directory in the repository where they should be included as dependencies in the Package.json file and moved into the build directory by grunt

nicholasnelson commented 7 years ago

After further research, I have found Browserify will automatically include node_modules for us, so we can just use

var module = require('module-name');

as long as the module is installed in the node_modules directory.