summaryrefslogtreecommitdiff
path: root/scalalib/src
Commit message (Collapse)AuthorAgeFilesLines
* Some long-overdue renamingsLi Haoyi2018-02-093-8/+8
|
* Allow publishing to sonatype without immediate releaseLi Haoyi2018-02-092-23/+36
|
* .Li Haoyi2018-02-091-2/+4
|
* vendor ammonite.main code so we can properly handle arity-0 CLI args, fix ↵Li Haoyi2018-02-082-7/+16
| | | | GenIdea by making it take an Evaluator as an argument
* wipLi Haoyi2018-02-071-4/+4
|
* attempt to fix publishAllLi Haoyi2018-02-071-0/+1
|
* Merge branch 'master' of github.com:lihaoyi/millLi Haoyi2018-02-061-3/+3
|\
* | all T.commands to take targets as CLI arguments, and use that to get rid of ↵Li Haoyi2018-02-061-17/+22
|/ | | | our custom releaseCI/releaseManual commands
* Properly include the base path of the publish-destination URLs0.0.7Li Haoyi2018-02-041-6/+9
|
* Fix github release creation, add new batch publishing capability to try and ↵0.0.5Li Haoyi2018-02-042-51/+79
| | | | speed up publishing lots of modules
* limit better-files tests to a smaller subset to try and make CI happyLi Haoyi2018-02-041-6/+5
|
* add upstream dependencies to ivy.xmlLi Haoyi2018-02-041-15/+8
|
* properly embed the local module dependency graph metadata in published pom.xmlsLi Haoyi2018-02-041-4/+19
|
* allow Result.Failure to take a valueLi Haoyi2018-02-041-1/+4
|
* Add support for external modules, useful for things `GenIdea` supportLi Haoyi2018-02-042-2/+8
|
* catch compile-failure exceptions to avoid showing the stack traceLi Haoyi2018-02-041-1/+1
|
* Fix ScalaWorker test runs to make them properly break the buildLi Haoyi2018-02-041-3/+6
|
* Fix `HelloJsWorld` testsLi Haoyi2018-02-043-7/+6
|
* Use the full path of a ScalaModule in it's default artifact name, rather ↵Li Haoyi2018-02-041-1/+1
| | | | than just the last segment
* fix mill_version use siteLi Haoyi2018-02-041-1/+1
|
* Publish all modules to support intellij navigation within build files, and ↵Li Haoyi2018-02-042-2/+2
| | | | remove hardcoded mill version from `ScalaWorkerApi`
* wip auto publishing...Li Haoyi2018-02-041-2/+2
|
* Remove the default `publishVersion` from `PublishModule`, and add `--batch` ↵Li Haoyi2018-02-043-3/+3
| | | | to gpg shellout to avoid popping up a password screen
* Fix GenIdea testsLi Haoyi2018-02-032-6/+6
|
* flexiblize T.sources and use it widely, which lets us fix --watchLi Haoyi2018-02-032-21/+16
|
* Make use of `CrossScalaModule` in `HelloWorldTests`Li Haoyi2018-02-031-1/+2
| | | | 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-031-1/+1
|
* fix scalalib testsLi Haoyi2018-02-031-1/+2
|
* - Renamed `Ctx.FooCtx` => `Ctx.Foo`Li Haoyi2018-02-022-4/+4
| | | | - Remove un-used `Evaluator#millSourcePath` parameter
* automatically create dest directory for targets to useLi Haoyi2018-02-021-1/+0
|
* - Rename `basePath` -> `millSourcePath`Li Haoyi2018-02-023-17/+17
| | | | - Make `T.worker`s not flush out their directories between instantiations
* consolidate test initialization logic into TestEvaluatorLi Haoyi2018-02-021-1/+1
|
* compile zinc compiler bridges on demand to remove restriction on supported ↵Li Haoyi2018-02-025-42/+29
| | | | scala versions
* Move `ScalaWorkerApi`/`ScalaJSBridge` over to new `ExternalModule` classLi Haoyi2018-02-021-1/+1
| | | | Also add a simple unit to validate that you can use `ExternalModule`s as part of a build, and that the
* WIP: Scala js testing (#119)Nikolay Tatarinov2018-02-013-3/+8
| | | fixes #102. Use scala js testing framework to launch tests
* DRY up test suite by making `Discover` generation implicitLi Haoyi2018-01-281-1/+1
| | | | Also avoid passing around `Discover` and `Evaluator` together, since the latter already contains the former
* Fix gen idea testsLi Haoyi2018-01-281-14/+18
|
* Make `idea` task work with releaseAssembly and publishLocalLi Haoyi2018-01-274-6/+21
|
* Fix publishLocal of Mill's own buildLi Haoyi2018-01-271-1/+1
|
* Make `idea` task configure the root module to have IntelliJ properly handle ↵Li Haoyi2018-01-271-15/+46
| | | | the `build.sc` file
* First incomplete pass at writing docsLi Haoyi2018-01-271-28/+51
|
* Fix `dest`-assignment for overriden `T.command`s, and add basic unit tests ↵Li Haoyi2018-01-261-3/+5
| | | | to validate the `dest` paths of overriden commands and overriden targets
* Remove obsolete `Loader` context APILi Haoyi2018-01-241-2/+2
|
* update mill build to work with new isolated scalaworkerLi Haoyi2018-01-232-31/+23
|
* WIP splitting `mill.scalaworker` out of `mill.scalalib` and into it's own ↵Li Haoyi2018-01-235-313/+76
| | | | isolated module/classloader. Most scalalib test pass, tho GenIdea is still broken
* - Make `forkTest` and `forkRun` the default, renaming `test` and `run` to ↵Li Haoyi2018-01-211-19/+46
| | | | | | | | | | | | `testLocal` and `runLocal` - Support passing `forkEnv` parameters to `test` and `run`, necessary to get Ammonite working - Standardize signatures of `Jvm.interactiveSubprocess`/`Jvm.subprocess` - `Jvm.inprocess` is now `Jvm.runLocal` - Swap `TestModule.testLocal` over to using `Jvm.runLocal`, for consistency with everything else
* - Make `docsJar` and `sourcesJar` more robust against empty inputsLi Haoyi2018-01-211-12/+12
| | | | | - `sourcesJar` now de-dupes items by default, rather than crashing - Resolving commands now works properly within cross-builds
* Swap over to simplified Mill module/source layout from SBT'sLi Haoyi2018-01-2034-637/+0
| | | | Removes a lot of useless folders and gives us a chance to exercise this simplified layout. Support for the SBT layout is still verified by our integration tests
* add a basic test for gen-idea (#114)Stephen Nancekivell2018-01-1914-5/+183
| | | | | | | | | | * add a basic test for gen-idea * update GenIdeaTest with resources as source. * change .gitignore to allow .iml under src/test/resources. Ignore .idea_modules. * normalise library paths in GenIdeaTests
* Get Travis CI green again after adding Ammonite integration testLi Haoyi2018-01-191-17/+21
|