Fix source map load issue - By default we are setting webpack configuration devtool: false. Looks like a recent change and we get above source-map load warning if you have dev tools open. This was causing the app to stop responding when you have dev tools open. So passing down the inline-source-map configuration through xrun-tasks' webpack configuration.
Fix types issues in multiple packages
Fix assertion failures due deep-equals package.
A patch version bump on chai was causing major upgrade on deep-equals package. This lead to multiple failures in packages that use deep-equal assertions. As of now, with this PR, lock the chai version to avoid these assertion failures. This would unblock pending PRs. A better approach would be to update the assertion statement itself so that we can continue with chai upgrades in future. But since there are many such failures, deferring it to a later PR.
Upgrade @types/node in packages to fix types issues while running fun bootstrap.
Changes included in this release.
Fix source map load issue - By default we are setting
webpack
configurationdevtool: false
. Looks like a recent change and we get above source-map load warning if you have dev tools open. This was causing the app to stop responding when you have dev tools open. So passing down the inline-source-map configuration throughxrun-tasks'
webpack configuration.Fix types issues in multiple packages
Fix assertion failures due
deep-equals
package.A patch version bump on chai was causing major upgrade on deep-equals package. This lead to multiple failures in packages that use deep-equal assertions. As of now, with this PR, lock the chai version to avoid these assertion failures. This would unblock pending PRs. A better approach would be to update the assertion statement itself so that we can continue with chai upgrades in future. But since there are many such failures, deferring it to a later PR.
Upgrade
@types/node
in packages to fix types issues while runningfun bootstrap
.Fix loading issues in a few sample applications
Please see CHANGELOG.md for more information