-
-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate to Webpack 5, updated linting and libs (#127)
* Migrate to Webpack 5, update Babel, ESLint, and testing libraries. Applied Prettier for consistent formatting. Prepared for future tooling. * removes unused loaders * fix: electron webpack polyfills --------- Co-authored-by: Tyler Williams <tyler@coolsoftware.dev>
- Loading branch information
1 parent
4e325c7
commit 3a0c831
Showing
34 changed files
with
18,009 additions
and
32,108 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,4 +1,8 @@ | ||
{ | ||
"presets": ["es2015", "stage-1", "react"], | ||
"plugins": ["transform-decorators-legacy", "transform-class-properties", "transform-runtime"], | ||
"presets": ["@babel/preset-env", "@babel/preset-react"], | ||
"plugins": [ | ||
["@babel/plugin-proposal-decorators", { "legacy": true }], | ||
"@babel/plugin-transform-class-properties", | ||
"@babel/plugin-transform-runtime" | ||
] | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,128 +1,182 @@ | ||
# Changelog | ||
|
||
## [0.9.27] - 2020-10-30 | ||
|
||
- Enable nodeIntegration in the standalone electron app (#92) | ||
- Fix Type Definition for MST package | ||
|
||
## [0.9.26] - 2020-10-30 | ||
|
||
- Remove components and performance tabs (#87) | ||
- Type Definition for MST package (#81) | ||
|
||
## [0.9.23] - 2020-10-19 | ||
|
||
- Final fix vertical scroll in MST package (#73) | ||
- Remove destroyed mst roots from UI (#48) | ||
|
||
## [0.9.21] - 2019-3-9 | ||
|
||
- mobx-devtools-mst mobx@5 support | ||
- filter events in Changes tab | ||
- Made sets inspectable (#49) | ||
|
||
## [0.9.19] - 2018-8-31 | ||
|
||
### Fixed | ||
|
||
- Props & state not displayed when on component view (#34) | ||
|
||
## [0.9.18] - 2018-6-16 | ||
|
||
### Added | ||
|
||
- mobx@5 support | ||
|
||
## [0.9.17] - 2018-3-28 | ||
|
||
### Fixed | ||
|
||
- MST tab not working | ||
|
||
### Added | ||
|
||
- Made dates inspectable (#27) | ||
|
||
## [0.9.16] - 2018-3-25 | ||
|
||
### Fixed | ||
|
||
- Extension doesn't work (#27) | ||
|
||
## [0.9.15] - 2018-3-24 | ||
|
||
### Added | ||
|
||
- Made maps inspectable (#27) | ||
|
||
## [0.9.14] - 2018-3-20 | ||
|
||
### Fixed | ||
|
||
- Older MobX support (#26) | ||
|
||
## [0.9.13] - 2018-3-18 | ||
|
||
### Added | ||
|
||
- MobX@4 support | ||
|
||
### Fixed | ||
|
||
- Fixed background page errors that prevented connecting to frontend | ||
|
||
### Changed | ||
|
||
- MST tab now displays snapshots instead of patches | ||
|
||
## [0.9.12] - 2018-1-13 | ||
|
||
### Added | ||
|
||
- Actions' names in changes log (#15) | ||
|
||
## [0.9.11] - 2017-12-6 | ||
|
||
### Fixed | ||
|
||
- Fixed problems in firefox (#14) | ||
|
||
## [0.9.10] - 2017-11-27 | ||
|
||
### Added | ||
|
||
- Standalone app. | ||
|
||
### Fixed | ||
|
||
- Handle groupStart & groupEnd mismatch (#10) | ||
|
||
## [0.9.9] - 2017-11-20 | ||
|
||
### Fixed | ||
|
||
- Ability to use the extension inside electron environment | ||
|
||
## [0.9.8] - 2017-10-30 | ||
|
||
### Fixed | ||
|
||
- Fixed mobx-devtools-mst error in node.js environment (#8) | ||
|
||
## [0.9.7] - 2017-10-27 | ||
|
||
### Added | ||
|
||
- mobx-state-tree support. | ||
|
||
### Fixed | ||
|
||
- Displaying deep log items | ||
- Handling serializing exceptions | ||
|
||
## [0.9.6] - 2017-10-25 | ||
|
||
### Fixed | ||
|
||
- Displaying deep log items | ||
|
||
## [0.9.5] - 2017-10-23 | ||
|
||
### Fixed | ||
|
||
- Displaying diff details for top-level changes | ||
|
||
## [0.9.4] - 2017-10-23 | ||
|
||
### Fixed | ||
|
||
Fail gracefully if using unsupported mobx versions. | ||
|
||
## [0.9.3] - 2017-10-21 | ||
|
||
### Fixed | ||
|
||
- Reloading on navigation. | ||
|
||
## [0.9.2] - 2017-10-20 | ||
|
||
### Fixed | ||
|
||
- Removed unsafe-eval from manifest.json for addons.mozilla.org. | ||
|
||
## [0.9.1] - 2017-10-20 | ||
|
||
### Fixed | ||
|
||
- Fixed main layout problems in Firefox. | ||
|
||
## [v0.9.0] - 2017-10-20 | ||
|
||
### Added | ||
|
||
- mobx-react observervers tree viewer. | ||
- complex objects viewer. | ||
|
||
### Fixed | ||
|
||
- Performance issues on heavy logging events. | ||
|
||
### Changed | ||
|
||
- Complete redesign. | ||
|
||
## [0.0.23] - 2017-09-26 | ||
|
||
### Fixed | ||
|
||
- Communication between backend and frontend (#2). | ||
|
||
### Changed | ||
|
||
- Different devtool instances are not being synchronized anymore. |
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
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,7 +1,5 @@ | ||
{ | ||
"lerna": "2.4.0", | ||
"version": "0.9.30", | ||
"packages": [ | ||
"packages/*" | ||
] | ||
"packages": ["packages/*"] | ||
} |
Oops, something went wrong.