Skip to content

Commit bdb59f0

Browse files
committed
Updated changelog
1 parent 5301252 commit bdb59f0

2 files changed

Lines changed: 12 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [0.25.0-dev]
88
### Added
9-
- Updated elixir_script mix compiler to support compiling elixir_script paths in dependencies
10-
- Add `Collectable` implementations
11-
- Updated `for` implementation to use Collectable
12-
- `format` option. Can now specify the module format of output. Choices are `es` (default), `umd`, or `common`
13-
- Default input, output and format for elixirscript mix compiler
9+
- Updated elixir_script mix compiler to support compiling elixir_script paths in dependencies if dependency has mix compiler defined as well
10+
- Add `Collectable` protocol implementations
11+
- Updated `for` implementation to use `Collectable`
12+
- `format` option. Can now specify the module format of output.
13+
Choices are:
14+
* `:es` (default) for ES Modules
15+
* `:umd` for UMD
16+
* `:common` for CommonJS
17+
18+
- Default input, output and format for elixirscript mix compiler. In a mix project by default the elixirscript compiler will look in `lib/elixirscript` and input and place output in `priv/elixirscript`. The default format is `:es`
1419

1520
### Removed
1621
- `receive`

lib/mix/tasks/compile.elixir_script.ex

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ defmodule Mix.Tasks.Compile.ElixirScript do
2525
* `:es` - ES Modules
2626
* `:common` - CommonJS
2727
* `:umd` - UMD
28+
29+
The mix compiler will also compile any dependencies that have the elixirscript compiler in its mix compilers as well
2830
"""
2931

3032

0 commit comments

Comments
 (0)