millermedeiros / amd-utils

modular JavaScript utilities written in the AMD format
http://millermedeiros.github.com/amd-utils
142 stars 11 forks source link

Change the way files are converted for the node environment to be able to include a specific function. #84

Closed satazor closed 12 years ago

satazor commented 12 years ago

This pull request fixes the issue #73

millermedeiros commented 12 years ago

The only problem I see right now with this approach is that it will mess with the repository files if we do npm link (unless we add each package to the .gitignore file). Another option is to run git clean -fd which will delete all untracked files and folders (be careful!!)

I did a quick read on the node.js documentation about modules and it doesn't seem that there is another way of doing what we need.

The script is also deleting some files on the root folder that shouldn't be deleted. I think I will remove the step that deletes the files and add each package to the .gitignore file.