Skip to content

Commit db23e4f

Browse files
Update Dart.gitignore
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
1 parent 124a5bc commit db23e4f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Dart.gitignore

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# Don’t commit the following directories created by pub.
1+
# Files and directories created by pub
22
.buildlog
3+
.packages
4+
.project
35
.pub/
46
build/
5-
packages
6-
.packages
7+
**/packages/
78

8-
# Or the files created by dart2js.
9-
*.dart.js
10-
*.js_
9+
# Files created by dart2js
10+
*.js
1111
*.js.deps
1212
*.js.map
1313

14-
# Or the files created by dartdoc.
14+
# Directory created by dartdoc
1515
doc/
1616

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

0 commit comments

Comments
 (0)