-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from matanlurey/no_mirrors
Allow dart-mockito to be used by AOT (no dart:mirrors) clients
- Loading branch information
Showing
6 changed files
with
459 additions
and
411 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,29 @@ | ||
# Don’t commit the following directories created by pub. | ||
build/ | ||
packages/ | ||
# See https://www.dartlang.org/tools/private-files.html | ||
|
||
# Files and directories created by pub | ||
.buildlog | ||
.packages | ||
.project | ||
.pub/ | ||
build/ | ||
**/packages/ | ||
|
||
# Include when developing application packages. | ||
# Files created by dart2js | ||
# (Most Dart developers will use pub build to compile Dart, use/modify these | ||
# rules if you intend to use dart2js directly | ||
# Convention is to use extension '.dart.js' for Dart compiled to Javascript to | ||
# differentiate from explicit Javascript files) | ||
*.dart.js | ||
*.part.js | ||
*.js.deps | ||
*.js.map | ||
*.info.json | ||
|
||
# Directory created by dartdoc | ||
doc/api/ | ||
|
||
# Don't commit pubspec lock file | ||
# (Library packages only! Remove pattern if developing an application package) | ||
pubspec.lock | ||
|
||
.idea |
Oops, something went wrong.