.gitignore 325 B

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