Skip to content

Commit 7f9f6a1

Browse files
Updates based on discussions with Dart team
1. Updates based on discussions with Dart team See dart-archive/www.dartlang.org#1496 * Removed *.precompiled.js - not generated by dart2js any more * *.js_ → *.part.js Also: 2. Added guidance comments 3. doc/ → doc/api as manually written documents may be in doc/ 4. Added reference to appropriate Dart web site page
1 parent 3a622f2 commit 7f9f6a1

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

Dart.gitignore

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# See https://www.dartlang.org/tools/private-files.html
2+
13
# Files and directories created by pub
24
.buildlog
35
.packages
@@ -7,14 +9,19 @@ build/
79
**/packages/
810

911
# Files created by dart2js
10-
*.js
11-
*.precompiled.js
12+
# (Most Dart developers will use pub build to compile Dart, use/modify these
13+
# rules if you intend to use dart2js directly
14+
# Convention is to use extension '.dart.js' for Dart compiled to Javascript to
15+
# differentiate from explicit Javascript files)
16+
*.dart.js
17+
*.js.part
1218
*.js.deps
1319
*.js.map
1420
*.info.json
1521

1622
# Directory created by dartdoc
17-
doc/
23+
doc/api
1824

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

0 commit comments

Comments
 (0)