Skip to content

Commit

Permalink
Update Dart.gitignore
Browse files Browse the repository at this point in the history
Modify patterns to explicitly match directories

Modified patterns to match files created by tool in Dart SDK 1.12:
 - Added patterns matching files listed in https://www.dartlang.org/tools/private-files.html
 - Added *.js, removed *.js_, *.dart.js to match files created by dart2js
  • Loading branch information
ArgentiApparatus committed Oct 21, 2015
1 parent 124a5bc commit db23e4f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Dart.gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Don’t commit the following directories created by pub.
# Files and directories created by pub
.buildlog
.packages
.project
.pub/
build/
packages
.packages
**/packages/

# Or the files created by dart2js.
*.dart.js
*.js_
# Files created by dart2js
*.js
*.js.deps
*.js.map

# Or the files created by dartdoc.
# Directory created by dartdoc
doc/

# Don't commit pubspec lock file. (Library packages only! Remove pattern if developing an application package.)
# Don't commit pubspec lock file (Library packages only! Remove pattern if developing an application package)
pubspec.lock

0 comments on commit db23e4f

Please sign in to comment.