Skip to content

Commit 2513f9e

Browse files
authored
Merge pull request #28 from matanlurey/no_mirrors
Allow dart-mockito to be used by AOT (no dart:mirrors) clients
2 parents aa9e03b + aaaeb02 commit 2513f9e

File tree

6 files changed

+459
-411
lines changed

6 files changed

+459
-411
lines changed

.gitignore

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,29 @@
1-
# Don’t commit the following directories created by pub.
2-
build/
3-
packages/
1+
# See https://www.dartlang.org/tools/private-files.html
2+
3+
# Files and directories created by pub
4+
.buildlog
5+
.packages
6+
.project
47
.pub/
8+
build/
9+
**/packages/
510

6-
# Include when developing application packages.
11+
# Files created by dart2js
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+
*.part.js
18+
*.js.deps
19+
*.js.map
20+
*.info.json
21+
22+
# Directory created by dartdoc
23+
doc/api/
24+
25+
# Don't commit pubspec lock file
26+
# (Library packages only! Remove pattern if developing an application package)
727
pubspec.lock
28+
29+
.idea

0 commit comments

Comments
 (0)