-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,22 @@ | ||
# Changelog | ||
|
||
## 0.1.1 | ||
|
||
- Exposed the top level `build` function. This can be used to run builds. | ||
- For this release all builds are non-incremental, and delete all previous | ||
build outputs when they start up. | ||
- Creates a `.build` directory which should be added to your `.gitignore`. | ||
- Added `resolve` method to `BuildStep` which can give you a `Resolver` for an | ||
`AssetId`. | ||
- This is experimental and may get moved out to a separate package. | ||
- Resolves the full dart sdk so this is slow, first call will take multiple | ||
seconds. Subsequent calls are much faster though. | ||
- Will end up marking all transitive deps as dependencies, so your files may | ||
end up being recompiled often when not entirely necessary (once we have | ||
incremental builds). | ||
- Added `listAssetIds` to `AssetReader` (only matters if you implement it). | ||
- Added `delete` to `AssetWriter` (also only matters if you implement it). | ||
|
||
## 0.1.0 | ||
|
||
- Initial version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters