- Aug 06, 2015
-
-
Bob Nystrom authored
Fixes #1230. R=nweiz@google.com Review URL: https://codereview.chromium.org//1272813003 .
-
Natalie Weizenbaum authored
This reverts commit 7fbc1040, which reverted commit dc626af3. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1272903002 .
-
Natalie Weizenbaum authored
Currently we don't auto-run "pub get" if there's no lockfile and also no dependencies. We should, in order to create a self-link. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1277633004 .
-
- Aug 05, 2015
-
-
Bob Nystrom authored
Makes pub serve less spammy when used with Dartium where you have a slew of requests for each source file. Review URL: https://codereview.chromium.org//1267023002 .
-
Natalie Weizenbaum authored
This reverts commit dc626af3. This broke due to dart-lang/sdk#23991. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1272833003 .
-
Natalie Weizenbaum authored
Previously this was using the packages/ directory, but that's no longer reliable since there's now an option to not generate it. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1269393003 .
-
- Jul 31, 2015
-
-
Bob Nystrom authored
Fixes #1109. R=nweiz@google.com Review URL: https://codereview.chromium.org//1267853002 .
-
- Jul 20, 2015
-
-
Natalie Weizenbaum authored
Closes #1304 R=rnystrom@google.com Review URL: https://codereview.chromium.org//1248483003 .
-
Natalie Weizenbaum authored
It turns out it's not safe to assume that pub is checked out from Git when running from the SDK repo. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1246713005 .
-
- Jul 15, 2015
-
-
Natalie Weizenbaum authored
Now instead of just saying how many packages failed to be reinstalled/reactivated, "pub cache repair" will print a list of those packages. This also fixes an issue where "pub cache repair" would incorrectly return a 0 exit code when packages failed to reactivate. Closes #1301 R=rnystrom@google.com Review URL: https://codereview.chromium.org//1239623005 .
-
- Jul 14, 2015
-
-
Natalie Weizenbaum authored
This is helpful for subprocesses to be able to spawn Dart with Platform.executableArguments and have that work regardless of the working directory. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1236973002 .
-
Natalie Weizenbaum authored
If a package used two instances of its own transformer on the transformer's own file (or a file it imported), the dependency computer would crash. Closes #1298 R=rnystrom@google.com Review URL: https://codereview.chromium.org//1229303004 .
-
Natalie Weizenbaum authored
This causes a substantial amount of pain, and doesn't seem to really help anyone. It's rare to have the connection with the server go completely dead without actually closing. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1235013002 .
-
- Jul 13, 2015
-
-
Natalie Weizenbaum authored
This will help avoid issues like #1294 in the future. R=rnystrom@google.com, rnystrom@gmail.com Review URL: https://codereview.chromium.org//1227913009 .
-
- Jul 10, 2015
-
-
Natalie Weizenbaum authored
* forward_signal_posix_test needed to be marked as incompatible with Windows. * Deleting the sandbox directory would sometimes fail due to locking issues, and this failure would obscure underlying issues. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1226083002 .
-
Natalie Weizenbaum authored
Closes #1296 R=rnystrom@google.com Review URL: https://codereview.chromium.org//1233533002 .
-
- Jul 09, 2015
-
-
Natalie Weizenbaum authored
* Normalize paths before they're passed to dart2js. It handles "." and ".." path components poorly. * Ensure that paths emitted by list-package-dirs are always absolute and normalized for backwards-compatibility with the existing protocol. * Make Package.listFiles work for an in-memory package. * Fix an error message expectation in packages_file_test. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1228683003 .
-
Natalie Weizenbaum authored
It can choke on relative paths in surprising ways. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1231893004 .
-
Natalie Weizenbaum authored
* The package spec's reference to the entrypoint package was pointing to the hosted cache rather than the package's directory. This was caused by the package graph's instance of the entrypoint package incorrectly pointing to the cache; the graph now re-uses `entrypoint.root`. * The package spec didn't contain relative paths for relative path dependencies. This was being missed by our tests because the package spec parser was automatically converting all paths to absolute at parse-time. Closes #1294 R=rnystrom@google.com Review URL: https://codereview.chromium.org//1228093003 .
-
Natalie Weizenbaum authored
R=rnystrom@google.com Review URL: https://codereview.chromium.org//1224153002 .
-
Natalie Weizenbaum authored
* Some HTTP requests were still being made. These are now avoided, and the tests have been modified to assert that no HTTP requests are made at all. * When a specific package version was in a package's lockfile *and* available on the server but wasn't in the user's cache, pub would crash when run in offline mode. Closes #1293 Print a nice error for missing offline packages. Previously, this would print an unhelpful message along with "this is an unexpected error". Closes #1293 R=rnystrom@google.com Review URL: https://codereview.chromium.org//1226133003 .
-
- Jul 07, 2015
-
-
Natalie Weizenbaum authored
OS X symlinks its /tmp directory, so we need to resolve symlinks before we can safely compare paths that might include /tmp. Review URL: https://codereview.chromium.org//1225483003.
-
Natalie Weizenbaum authored
Update README.md
-
Kasper Peulen authored
-
Natalie Weizenbaum authored
When a package both transformed itself and had a dev transformer (that is, a transformer that only runs on non-public files), *and* that package's self-transformed code was imported by another transformer, the dependency computer could return the dev transformer in its results. Closes #1290 Closes #1291 R=kevmoo@google.com Review URL: https://codereview.chromium.org//1220223008.
-
- Jul 01, 2015
-
-
Natalie Weizenbaum authored
R=rnystrom@google.com Review URL: https://codereview.chromium.org//1217943009.
-
- Jun 30, 2015
-
-
Natalie Weizenbaum authored
Somehow I didn't notice that the test I added for this wasn't actually passing. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1211243009.
-
Natalie Weizenbaum authored
I forgot to update the --help output here. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1220543006.
-
Natalie Weizenbaum authored
Now that pub uses the new test runner, some of its logic for running in the Dart SDK repository needs to be updated. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1216163002.
-
- Jun 29, 2015
-
-
Natalie Weizenbaum authored
When running an executable directly from the filesystem, "pub run" would sometimes fail to give it the correct package root. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1217923002.
-
Natalie Weizenbaum authored
Now that users in general have a reason to disable this, they should know it exists. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1217013004.
-
Natalie Weizenbaum authored
R=rnystrom@google.com Review URL: https://codereview.chromium.org//1212843004.
-
Natalie Weizenbaum authored
-
Natalie Weizenbaum authored
Now that Platform.resolvedExecutable exists, the environment variable only provided a way to load files from the wrong SDK. Closes #1288 R=rnystrom@google.com Review URL: https://codereview.chromium.org//1220553002.
-
- Jun 27, 2015
-
-
Natalie Weizenbaum authored
R=rnystrom@google.com Review URL: https://codereview.chromium.org//1215833002.
-
- Jun 26, 2015
-
-
Natalie Weizenbaum authored
The git invocations in the snapshot-generation code became very flaky when run in massive parallel via the new test runner. Now a snapshot will be used if it's manually-generated, and otherwise pub will be run from source. R=rnystrom@google.com Review URL: https://codereview.chromium.org//1216433003.
-
- Jun 25, 2015
-
-
Natalie Weizenbaum authored
Fix for pub crashing in checked mode
-
algobardo authored
-
- Jun 24, 2015
-
-
Lasse R.H. Nielsen authored
R=nweiz@google.com Review URL: https://codereview.chromium.org//1096723002.
-
- Jun 10, 2015
-
-
Natalie Weizenbaum authored
As per #1283, this makes it easier to script pub, since it's now programattically clear whether publishing went through (or, if using --dry-run, whether validation succeeded). Closes #1283 R=rnystrom@google.com Review URL: https://codereview.chromium.org//1172803002.
-