sohamkamani / three-object-loader

[DEPRECATED] NodeJS wrapper for Three.js' OBJLoader function
30 stars 31 forks source link

Don't commit the dist/ folder #2

Closed AndrewRayCode closed 8 years ago

AndrewRayCode commented 8 years ago

Git is ideal for source code, not built code. Built code shouldn't have history in git, because the diffs for it don't matter. A built file should be linked to a CDN in the README or similar.

sohamkamani commented 8 years ago

This node module is written in ES6, which means that older versions of node (and if browserify is used without an ES6 transpiler) wont be supported.

The entry point of this node module is actually in the dist folder, and sadly files which are gitignored cannot be published to npm (as far as I know)

Would love to hear an alternate solution if it's there.