From e8d7cafc16053ef564fd2e9e16e63c73c8fade76 Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Sat, 8 Mar 2014 00:45:00 -0800 Subject: [PATCH] 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. --- Dart.gitignore | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Dart.gitignore b/Dart.gitignore index 602616ce..74a3439f 100644 --- a/Dart.gitignore +++ b/Dart.gitignore @@ -1,11 +1,13 @@ -# Don’t commit the following files and directories created by pub and dart2js +# Don’t 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