summaryrefslogtreecommitdiff
path: root/core/src
Commit message (Collapse)AuthorAgeFilesLines
* Java 9 optimization by caching rt.jar (#239)Robby2018-03-193-6/+22
| | | | | | | | | | | | | | * Upgraded Ammonite to 1.0.5-7-f032887 that includes a Java 9 performance optimization for mill's client-server mode (lihaoyi/Ammonite#773). * Java 9 optimization for interactive mode by caching rt.jar. * Refactored based on @lihaoyi's comments on #239. * Removed client side rt.jar caching. * Propagatio of home path from Cli. * Propagation, propagation, propagation!
* Fixes for non-interactive (client/server) mode on Java 9 (#221)Robby2018-03-131-2/+9
| | | | | | * Fixes for client/server mode on Java 9. * Upgraded ammonite to 1.0.5-4-c0cdbaf.
* Changes to make {clientserver,main,scalalib,scalajslib}.test work under Java ↵Robby2018-03-101-0/+12
| | | | | | | | | | 9 (#217) * Append "exported rt.jar" when creating URLClassLoader. * Disabled tests involving Scala 2.10 & 2.11 and nashorn. * Use java.net.URLClassLoader.
* Mill now generates an `out/mill-profile.json` file containing task-timings, toLi Haoyi2018-03-041-7/+29
| | | | make it easier to see where your mill evaluation time is going
* Introduced the `mill plan foo.bar` command, which shows you what the ↵Li Haoyi2018-03-041-39/+43
| | | | execution plan of running the `foo.bar` task looks like without actually evaluating it.
* Split overriden enclosing path on `#` in addition to `.`, since `#` behaves ↵Li Haoyi2018-03-031-1/+1
| | | | badly in URIs and other places
* Split out `upstreamAssembly` from `assembly`Li Haoyi2018-03-033-19/+37
| | | | Also re-write `Jvm.createAssembly` to allow incremental assembly construction. This should allow much faster assembly creation in the common case where upstream dependencies do not change
* Lazily create `dest` folders, `log` files and `OuterStack` traces only as ↵Li Haoyi2018-02-252-13/+13
| | | | | | necessary. Now we only create them if a Task asks for `T.ctx().dest` or logs something. The vast majority of tasks just do plumbing and neither log output nor create files in `dest`, and this avoids the unnecessary overhead of creating all those un-used files, folders & stack trace
* A few attempts at micro-optimizing the current hot spotsLi Haoyi2018-02-254-23/+36
|
* cache hashCodes as part of meta.json to avoid needlessly re-hashing thingsLi Haoyi2018-02-251-48/+39
|
* Save the signature of a `PathRef` to avoid re-stating files every time they ↵Li Haoyi2018-02-252-47/+64
| | | | are de-serialized
* better error messages when you run interactive commands without -iLi Haoyi2018-02-241-0/+5
|
* Clean up the provisional client-server code with unit tests and proper ↵Li Haoyi2018-02-242-7/+18
| | | | | | | | file-sockets Seems to work well enough for interactive scala consoles, though still not Ammonite Also Added ScalaModule#launcher and re-worked our build.sc file to use it
* fix-testsLi Haoyi2018-02-211-1/+0
|
* First pass at cleaning up evaluator caching systemLi Haoyi2018-02-201-2/+5
|
* Improve error reporting for NamedTasks with the wrong number of parametersLi Haoyi2018-02-192-3/+25
|
* Update resolution tests in `MainTests.scala`Li Haoyi2018-02-171-1/+1
| | | | Added test cases for new "Did you mean...", "Try `mill.resolve ...`" hints
* WIP getting tests passing againLi Haoyi2018-02-171-1/+3
|
* Avoid printing unnecessary newlines in `Logger`Li Haoyi2018-02-171-28/+48
| | | | Often the main output stream already ends with a newline, so only print a newline in the case where it hasn't
* fix docsLi Haoyi2018-02-101-2/+2
|
* - DRY up `Resolve.scala`Li Haoyi2018-02-091-2/+4
| | | | | - Add a version of `Resolve` that resolves names only, but works on entrypoints/etc. without needing arguments - Fix tests to compile with new `multiSelect` parsing flag
* Parse args directly in MainModule commands to allow for ``--all`-style ↵Li Haoyi2018-02-093-34/+26
| | | | argument parsing
* get rid of external watch flagLi Haoyi2018-02-091-8/+7
|
* .Li Haoyi2018-02-0919-1147/+51
|
* vendor ammonite.main code so we can properly handle arity-0 CLI args, fix ↵Li Haoyi2018-02-0813-160/+487
| | | | GenIdea by making it take an Evaluator as an argument
* wipLi Haoyi2018-02-076-15/+483
|
* attempt to fix publishAllLi Haoyi2018-02-075-18/+41
|
* .Li Haoyi2018-02-062-2/+3
|
* Merge branch 'master' of github.com:lihaoyi/millLi Haoyi2018-02-063-4/+2
|\
| * fix introspection of children on console (eg build) (#128)ajrnz2018-02-061-2/+2
| | | | | | this used to work but stopped, I guess, after some on segments
* | all T.commands to take targets as CLI arguments, and use that to get rid of ↵Li Haoyi2018-02-064-17/+66
|/ | | | our custom releaseCI/releaseManual commands
* allow Result.Failure to take a valueLi Haoyi2018-02-044-15/+39
|
* Fix testsLi Haoyi2018-02-041-2/+0
|
* Add support for external modules, useful for things `GenIdea` supportLi Haoyi2018-02-046-54/+83
|
* Use the full path of a ScalaModule in it's default artifact name, rather ↵Li Haoyi2018-02-041-0/+9
| | | | than just the last segment
* wip auto publishing...Li Haoyi2018-02-042-2/+3
|
* Show a proper error message when invoking a command failsLi Haoyi2018-02-031-9/+17
|
* flexiblize T.sources and use it widely, which lets us fix --watchLi Haoyi2018-02-033-21/+46
|
* Make use of `CrossScalaModule` in `HelloWorldTests`Li Haoyi2018-02-034-5/+17
| | | | Also standardize the `HelloWorldTests` onto the typical project layout, where the module of interest is nested within a top-level `BaseModule`
* fix the externalOutPath for RunScript/GenIdea/ReplApplyHandlerLi Haoyi2018-02-032-2/+2
|
* fix scalalib testsLi Haoyi2018-02-032-8/+5
|
* - Renamed `Ctx.FooCtx` => `Ctx.Foo`Li Haoyi2018-02-026-34/+18
| | | | - Remove un-used `Evaluator#millSourcePath` parameter
* Enforce that only one task in a group can use `T.ctx().dest` ↵Li Haoyi2018-02-022-14/+33
| | | | https://github.com/lihaoyi/mill/issues/62
* automatically create dest directory for targets to useLi Haoyi2018-02-023-6/+2
|
* use an implicit to indicate whether a ctx is within an external moduleLi Haoyi2018-02-023-11/+25
|
* - Rename `basePath` -> `millSourcePath`Li Haoyi2018-02-026-24/+30
| | | | - Make `T.worker`s not flush out their directories between instantiations
* consolidate test initialization logic into TestEvaluatorLi Haoyi2018-02-023-2/+4
|
* compile zinc compiler bridges on demand to remove restriction on supported ↵Li Haoyi2018-02-021-2/+45
| | | | scala versions
* Move `ScalaWorkerApi`/`ScalaJSBridge` over to new `ExternalModule` classLi Haoyi2018-02-021-3/+14
| | | | Also add a simple unit to validate that you can use `ExternalModule`s as part of a build, and that the
* Fix propagation of overriden `Module#basePath` and add a test to verify it's ↵Li Haoyi2018-02-022-2/+5
| | | | behavior