Fixed missing parameter
This commit is contained in:
parent
86538f7af1
commit
bddd9fbfb8
3 changed files with 7 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
|||
# Change Log
|
||||
|
||||
## 7.1.1
|
||||
|
||||
* Added `exclusive` parameter to `createSync`
|
||||
|
||||
## 7.1.0
|
||||
|
||||
* Upgraded to `analyzer` 5.x.x
|
||||
|
|
|
@ -158,7 +158,8 @@ class BuildSystemFile extends File {
|
|||
throw _unsupported();
|
||||
|
||||
@override
|
||||
void createSync({bool recursive = false}) => throw _unsupported();
|
||||
void createSync({bool exclusive = false, bool recursive = false}) =>
|
||||
throw _unsupported();
|
||||
|
||||
@override
|
||||
Future<FileSystemEntity> delete({bool recursive = false}) =>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: jael3_web
|
||||
version: 7.1.0
|
||||
version: 7.1.1
|
||||
description: Experimental virtual DOM/SPA engine built on Jael3. Supports SSR.
|
||||
publish_to: none
|
||||
environment:
|
||||
|
|
Loading…
Reference in a new issue