angular-bacon
angular-bacon copied to clipboard
Angular-bacon.js bindings
_Dependabot Preview will be shut down on August 3rd, 2021. In order to keep getting Dependabot updates, please merge this PR and migrate to GitHub-native Dependabot before then._ Dependabot has...
Bumps [grunt](https://github.com/gruntjs/grunt) from 1.0.4 to 1.4.1. **This update includes a security fix.** Vulnerabilities fixed Sourced from The GitHub Security Advisory Database. Arbitrary Code Execution in grunt The package grunt before...
Bumps [grunt-contrib-jasmine](https://github.com/gruntjs/grunt-contrib-jasmine) from 1.1.0 to 3.0.0. Release notes Sourced from grunt-contrib-jasmine's releases. v3.0.0 Merge pull request #334 from gruntjs/add-actions 32d89c3 Use Actions 775abc5 Merge pull request #333 from gruntjs/deps-changelog 623c79c...
Bumps [grunt-contrib-uglify](https://github.com/gruntjs/grunt-contrib-uglify) from 3.2.1 to 5.0.1. Release notes Sourced from grunt-contrib-uglify's releases. v5.0.1 Update uglify-js to v3.13.3. v4.0.1 Update uglify-js to v3.5.0. Update dependencies. v4.0.0 Updated all dependencies. Requires Node.js...
Updates the requirements on [grunt-contrib-coffee](https://github.com/gruntjs/grunt-contrib-coffee) to permit the latest version. Changelog *Sourced from [grunt-contrib-coffee's changelog](https://github.com/gruntjs/grunt-contrib-coffee/blob/master/CHANGELOG).* > v2.1.0: > date: 2019-03-18 > changes: > - Updates to CoffeeScript 2.3.2. > v2.0.0:...
Updates the requirements on [grunt-contrib-clean](https://github.com/gruntjs/grunt-contrib-clean) to permit the latest version. Changelog *Sourced from [grunt-contrib-clean's changelog](https://github.com/gruntjs/grunt-contrib-clean/blob/master/CHANGELOG).* > v2.0.0: > date: 2018-09-08 > changes: > - Update all dependencies. > - Drop...
Because `$scope.$watchAsProperty()` returns a property that is constructed from a `Bacon.Bus`, it suffers from [this issue](https://github.com/baconjs/bacon.js/issues/304). Compare: ``` javascript // Note that `$scope.test` does not exist. var property = $scope.$watchAsProperty('test');...
Consider the following lines of code: ``` javascript $scope.test = 'initial'; var property = $scope.$watchAsProperty('test'); // Property will emit the scope variable's initial value property.onValue(function (value) { console.log("I will be...
Can you please use [umd wrapper](https://github.com/umdjs/umd) and publish the module to npm?
Maybe I was overlooking something really obvious but I was having a hard time figuring out how to transform angular scope events into EventStreams. I think it would be nice...