[go: nahoru, domu]

Skip to content

Commit

Permalink
Add .dart_tool to gitignore (flutter#14932)
Browse files Browse the repository at this point in the history
Dart is migrating to .dart_tool/ as the location for cached artifacts
and other temporary files generated by tooling in the SDK. As part of
this, pub will be migrating from .pub to .dart_tool/pub.

In future, this path will also be used for other tooling, such as package:build.
  • Loading branch information
cbracken committed Feb 27, 2018
1 parent 9c895fa commit ae6ac2c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ version

# Flutter/Dart/Pub related
**/doc/api/
.dart_tool/
.flutter-plugins
.packages
.pub-cache/
Expand Down
1 change: 1 addition & 0 deletions dev/tools/vitool/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Files and directories created by pub
.dart_tool/
.packages
.pub/
build/
Expand Down
1 change: 1 addition & 0 deletions packages/flutter_tools/templates/create/.gitignore.tmpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.DS_Store
.atom/
.dart_tool/
.idea
.vscode/
.packages
Expand Down
1 change: 1 addition & 0 deletions packages/flutter_tools/templates/package/.gitignore.tmpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.DS_Store
.atom/
.dart_tool/
.idea
.packages
.pub/
Expand Down
1 change: 1 addition & 0 deletions packages/flutter_tools/templates/plugin/.gitignore.tmpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.DS_Store
.atom/
.dart_tool/
.idea
.packages
.pub/
Expand Down

0 comments on commit ae6ac2c

Please sign in to comment.