Skip to content

Commit

Permalink
Merge pull request #329 from Workiva/release_react-dart_6.1.4
Browse files Browse the repository at this point in the history
RM-121022 Release react-dart 6.1.4
  • Loading branch information
rmconsole4-wk authored Nov 1, 2021
2 parents d08ea82 + fe6b7f6 commit d2155af
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [6.1.4](https://github.com/cleandart/react-dart/compare/6.1.3...6.1.4)

- [#327] Fix stable ci build
- [#328] Work around $identityHash being added to JS objects passed into jsifyAndAllowInterop

## [6.1.3](https://github.com/cleandart/react-dart/compare/6.1.2...6.1.3)

- [#308] Bump elliptic from 6.5.3 to 6.5.4
Expand Down
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ If you are not familiar with the ReactJS library, read this [react tutorial](htt
name: your_package_name
version: 1.0.0
environment:
sdk: ^2.7.0
sdk: ^2.11.0
dependencies:
react: ^6.0.0
```

3. Install the dependencies using pub:

```bash
pub get
dart pub get
```

### Wire things up
Expand Down Expand Up @@ -388,7 +388,7 @@ void main() {
Format using
```bash
dartfmt -l 120 -w .
dart format -l 120 .
```
While we'd like to adhere to the recommended line length of 80, it's too short for much of the code
Expand All @@ -401,16 +401,18 @@ So, we use a line length of 120 instead.
#### dart2js
```bash
pub run test -p chrome
dart run build_runner test --release -- --preset dart2js
```
_Or any other browser, e.g. `-p firefox`._
> NOTE: When using Dart SDK < 2.14.0, use `--preset dart2js-legacy` instead.
#### Dart Dev Compiler ("DDC")
```bash
pub run build_runner test -- -p chrome
dart run build_runner test -- --preset dartdevc
```
_DDC only works in chrome._
> NOTE: When using Dart SDK < 2.14.0, use `--preset dartdevc-legacy` instead.
### Building React JS Source Files
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: react
version: 6.1.3
version: 6.1.4
description: Bindings of the ReactJS library for building interactive interfaces.
homepage: https://github.com/cleandart/react-dart
environment:
Expand Down

0 comments on commit d2155af

Please sign in to comment.