Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: BrowserSync/browser-sync
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.28.3
Choose a base ref
...
head repository: BrowserSync/browser-sync
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.29.0
Choose a head ref
  • 2 commits
  • 17 files changed
  • 2 contributors

Commits on Mar 16, 2023

  1. fix: ie11 support (#2024)

    Co-authored-by: Shane Osbourne <sosbourne@duckduckgo.com>
    shakyShane and Shane Osbourne authored Mar 16, 2023
    Copy the full SHA
    87421b5 View commit details
  2. v2.29.0

    Shane Osbourne committed Mar 16, 2023
    Copy the full SHA
    bed04d4 View commit details
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -2,5 +2,5 @@
"packages": [
"packages/*"
],
"version": "2.28.3"
"version": "2.29.0"
}
2 changes: 2 additions & 0 deletions packages/browser-sync-client/lib/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
///<reference path="types.ts"/>
import "core-js/es/object/assign"
import 'element-scroll-polyfill';
import { Observable } from "rxjs/Observable";
import { BehaviorSubject } from "rxjs/BehaviorSubject";
import { zip } from "rxjs/observable/zip";
Loading