Update Dart.gitignore

- add the `build/` directory to the .gitignore list (now created by pub).
- add the `.dart.precompiled.js` files (created by dart2js) to the ignore list.

And, sort and re-order the file.
This commit is contained in:
Devon Carew 2014-03-08 00:45:00 -08:00
parent eda2ee70de
commit e8d7cafc16
1 changed files with 7 additions and 5 deletions

View File

@ -1,11 +1,13 @@
# Dont commit the following files and directories created by pub and dart2js
# Dont commit the following directories created by pub.
build/
packages/
# Or the files created by dart2js.
*.dart.js
*.dart.precompiled.js
*.js_
*.js.deps
*.js.map
# Include when developing application packages
# Include when developing application packages.
pubspec.lock
# Avoid committing generated JavaScript files
*.dart.js