UNPKG

964 BMarkdownView Raw
1# 0.26.0 - 2018-01-08
2
3#### 💥 Breaking
4
5- `Script` file names must now be pascal case: `foo-bar.js` -> `FooBar.js`.
6- `ScriptContext#scriptPath` has been renamed to `path`.
7
8#### 🚀 New
9
10- Updated `beemo create-config` to create a config for all enabled drivers if no args are passed.
11- Added `--live` to `beemo <driver>` to view output live instead of on completion.
12- Added `DriverContext#eventName` property.
13- Added `ScriptContext#eventName` property.
14
15#### 🛠 Internal
16
17- Updated to Boost 1.4 which includes a new CLI engine.
18
19# 0.25.0 - 2018-12-29
20
21#### 💥 Breaking
22
23- `Script` now extends Boost `Routine`, providing more functionality.
24 - `parse()` was renamed to `args()`.
25 - `run(options, tool)` was renamed to `execute(context, options)`.
26
27#### 🚀 New
28
29- Added _experimental_ support for capturing watch output from drivers.
30- Added `watchOptions` metadata field to `Driver`. Defines CLI watch options to intercept for the
31 defined driver.