.gitignore 395 B

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