.gitignore 335 B

12345678910111213141516171819
  1. # Ignoring compiled files in examples etc
  2. examples/nodejs/**/*.js
  3. examples/webos/**/*.js
  4. server/FileServer*.js
  5. # Ignoring Mac Finder files
  6. .DS_Store
  7. # Ignoring compiled files in st
  8. st/*.js
  9. # Ignoring run.js in test/
  10. test/run.js
  11. # In case amber is also saved in a local Subversion
  12. .svn
  13. # Ignoring local NPM modules
  14. /node_modules/*