Skip to content

Commit bddb1e6

Browse files
committed
[docs] add changelog
1 parent 88f4223 commit bddb1e6

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

CHANGELOG.md

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# [Unreleased]
2+
3+
# [3.0.0](https://github.com/IjzerenHein/react-native-bundle-visualizer/compare/v2.3.0...v3.0.0) (2021-08-23)
4+
5+
### Bug Fixes
6+
7+
- Fixes `@expo/metro-config` resolving to old dependencies, causing problems with newer Expo SDK versions (removes this depenendency entirely).
8+
9+
### Breaking changes
10+
11+
- Removes the `-expo` command line option. As of Expo SDK 41 this option is no longer needed. Use `react-native-bundle-visualizer@2` for Expo SDK 40 or lower.
12+
13+
# [2.3.0](https://github.com/IjzerenHein/react-native-bundle-visualizer/compare/v2.2.1...v2.3.0) (2021-08-03)
14+
15+
- Fix `unknownApp` name for Expo apps
16+
- Drop support for Node 10
17+
- Updated dependencies to their latest versions
18+
- Added tests for react-native 0.64 and Expo SDK 42
19+
- Expo apps using SDK 41 or higher no longer require `--expo bare/managed`
20+
21+
# [2.2.1](https://github.com/IjzerenHein/react-native-bundle-visualizer/compare/v2.1.1...v2.2.1) (2020-07-07)
22+
23+
- Add `--expo [bare|managed]` option to generate Expo accurate bundles and handle `.expo` files correctly
24+
- Add `--format [html|json|tsv]` option to output as json or tsv files (thanks [wilau2](https://github.com/wilau2)!)
25+
- Add `--only-mapped` option for excluding "unmapped" bytes from the output (thanks [wilau2](https://github.com/wilau2)!)
26+
- Updated dependencies to their latest versions
27+
28+
# [2.1.1](https://github.com/IjzerenHein/react-native-bundle-visualizer/compare/v2.0.4...v2.1.1) (2019-12-10)
29+
30+
- Fixed build error when app-name contains special characters (Thanks! @ofiron01)
31+
- Added tests for RN61 and Expo35
32+
- Added CI support through Travis
33+
- Updated all dependencies to their latest versions
34+
- Removed all non-essential files from NPM package
35+
36+
# [2.0.4](https://github.com/IjzerenHein/react-native-bundle-visualizer/compare/v1.4.2...v2.0.4) (2019-10-01)
37+
38+
This version switches to using the awesome `source-map-explorer` package which can visualize the output from the Metro bundler directly. This means that the Haul bundler is no longer used and it should therefore result in less build errors and more accurate results. The source-map-explorer package also provides an interactive User interface which allows you to navigate deeper into the source code.
39+
Additionally, you can now run this version directly using npx without having to install any dependencies.
40+
41+
To use, just run `npx react-native-bundle-visualizer`
42+
43+
## Command line arguments
44+
45+
All command-line arguments are optional. By default a production build will be created for the `ios` platform.
46+
47+
| Option | Description | Example |
48+
| --------------- | ------------------------------------------------------------- | --------------------------------- |
49+
| `platform` | Platform to build (default is **ios**) | `--platform android` |
50+
| `dev` | Dev or production build (default is **false**) | `--dev false` |
51+
| `entry-file` | Entry-file (when omitted tries to auto-resolve it) | `--entry-file ./index.android.js` |
52+
| `bundle-output` | Output bundle-file (default is **tmp**) | `--bundle-output ./myapp.bundle` |
53+
| `verbose` | Dumps additional output to the console (default is **false**) | `--verbose` |
54+
| `reset-cache` | Removes cached react-native files (default is **false**) | `--reset-cache` |
55+
56+
# [1.4.2](https://github.com/IjzerenHein/react-native-bundle-visualizer/compare/v1.4.1...v1.4.2) (2019-07-31)
57+
58+
- Fixed `Can't resolve 'node_modules/expo/AppEntry.js'` error when using expo
59+
- Fixed certain expo-libs giving errors because they were not transpiled
60+
61+
# [1.4.1](https://github.com/IjzerenHein/react-native-bundle-visualizer/releases/tag/v1.4.1) (2019-03-20)
62+
63+
- Fixed `react-hot-loader` missing dependency issue with latest haul
64+
- Fixed new @react-native-community libs not transpiled correctly
65+
-

0 commit comments

Comments
 (0)