Git Product home page Git Product logo

subscribable-things's Introduction

logo

subscribable-things

A collection of reactive wrappers for various browser APIs.

version

This package provides factory functions which can be used to turn browser APIs into subscribable things. A subscribable thing can either be consumed directly with callback functions or by utilzing one of the popular libraries for reactive programming.

Usage

The subscribable-things package is published on npm and can be installed as usual.

npm install subscribable-things

It exports individual functions for each wrapped browser API which are described in greater detail below. They can either be used directly by providing a callback function ...

import { mediaQueryMatch } from 'subscribable-things';

const subscribe = mediaQueryMatch('(max-width:600px)');

const unsubscribe = subscribe((isMatching) => console.log(isMatching));

unsubscribe();

... or by utilizing a library for reactive programming like RxJS ...

import { from } from 'rxjs';
import { mediaQueryMatch } from 'subscribable-things';

const mediaQueryMatch$ = from(mediaQueryMatch('(max-width:600px)'));

const subscription = mediaQueryMatch$.subscribe((isMatching) => console.log(isMatching));

subscription.unsubscribe();

... or Callbags ...

import fromObs from 'callbag-from-obs';
import observe from 'callbag-observe';
import { mediaQueryMatch } from 'subscribable-things';

const source = fromObs(mediaQueryMatch('(max-width:600px)'));

observe((isMatching) => console.log(isMatching))(source);

... or XStream ...

import { mediaQueryMatch } from 'subscribable-things';
import { fromObservable } from 'xstream';

const stream = fromObservable(mediaQueryMatch('(max-width:600px)'));

const unsubscribe = stream.subscribe((isMatching) => console.log(isMatching));

unsubscribe();

... or Bacon.js ...

import { fromESObservable } from 'baconjs';
import { mediaQueryMatch } from 'subscribable-things';

const eventStream = fromESObservable(mediaQueryMatch('(max-width:600px)'));

const unsubscribe = eventStream.onValue((isMatching) => console.log(isMatching));

unsubscribe();

... or Kefir.js.

import { fromESObservable } from 'kefir';
import { mediaQueryMatch } from 'subscribable-things';

const stream = fromESObservable(mediaQueryMatch('(max-width:600px)'));

const subscription = stream.observe({
    value(isMatching) {
        console.log(isMatching);
    }
});

subscription.unsubscribe();

It is even possible to consume subscribable-things as an async iterable by taking the little detour over RxJS and rxjs-for-await.

import { eachValueFrom } from 'rxjs-for-await';
import { from } from 'rxjs';
import { mediaQueryMatch } from 'subscribable-things';

const source$ = from(mediaQueryMatch('(max-width:600px)'));

for await (const isMatching of eachValueFrom(source$)) {
    console.log(isMatching);
}

Also it's possible to output values directly to HTML via hyperf.

import h from 'hyperf';
import { mediaQueryMatch } from 'subscribable-things';

const element = h`<div>is matching: ${mediaQueryMatch('(max-width:600px)')}</div>`;

document.body.appendChild(element);

animationFrame()

function animationFrame(): SubscribableThing<number>;

This function wraps the requestAnimationFrame() method. It emits the current timestamp of each animation frame.

attribute(htmlElement, name)

function attribute(htmlElement: HTMLElement, name: string): TSubscribableThing<null | string>;

This function uses mutations() on the inside to emit the latest value of the attribute with the given name.

geolocation([options])

function geolocation(options?: PositionOptions): SubscribableThing<GeolocationPosition>;

This is a wrapper for the Geolocation API. It uses watchPosition() to gather the most recent GeolocationPosition whenever it changes.

intersections(htmlElement, [options])

function intersections(
    htmlElement: HTMLElement,
    options?: IntersectionObserverInit
): SubscribableThing<IntersectionObserverEntry[]>;

This function is a wrapper for the IntersectionObserver.

mediaDevices()

function mediaDevices(): SubscribableThing<MediaDeviceInfo[]>;

This function is a wrapper for the enumerateDevices() method of the Media Capture and Streams specification. It will also listen for the devicechange event to emit a fresh list of devices whenever they change.

mediaQueryMatch(mediaQueryString)

function mediaQueryMatch(mediaQueryString: string): SubscribableThing<boolean>;

This function is a wrapper for the matchMedia() method. It will emit a new value whenever the result of matchMedia() changes.

midiInputs(midiAccess)

function midiInputs(midiAccess: IMidiAccess): SubscribableThing<IMidiInput[]>;

This function returns the currently available MIDI input devices. It accepts a MIDIAccess object of the Web MIDI API.

midiOutputs(midiAccess)

function midiOutputs(midiAccess: IMidiAccess): SubscribableThing<IMidiOutput[]>;

This function returns the currently available MIDI output devices. It accepts a MIDIAccess object of the Web MIDI API.

metrics(options)

function metrics(options: PerformanceObserverInit): SubscribableThing<PerformanceEntry[]>;

This function is a wrapper for the PerformanceObserver as defined by the Performance Timeline Level 2 specification.

mutations(htmlElement, options)

function mutations(
    htmlElement: HTMLElement,
    options: MutationObserverInit
): SubscribableThing<MutationRecord[]>;

This function is a wrapper for the MutationObserver.

on(target, type, [options])

function on(
    target: EventTarget,
    type: string,
    options?: boolean | AddEventListenerOptions
): SubscribableThing<Event>;

This function can be used to subscribe to events of a certain type dispatched from an EventTarget.

online()

function online(): SubscribableThing<boolean>;

This function wraps the onLine property of the Navigator and listens for the corresponding 'online' and 'offline' events on the Window to emit updates.

permissionState(permissionDescriptor)

function permissionState(
    permissionDescriptor: PermissionDescriptor
): SubscribableThing<PermissionState>;

This function is a wrapper for the query() method of the Permissions API. It will monitor the permission status to emit a new state whenever it gets updated.

reports([options])

function reports(options?: IReportingObserverOptions): SubscribableThing<IReport[]>;

This function is a wrapper for the ReportingObserver of the Reporting API.

resizes(htmlElement, [options])

function resizes(
    htmlElement: HTMLElement,
    options?: IResizesObserverOptions
): SubscribableThing<IResizeObserverEntry[]>;

This function is a wrapper for the ResizeObserver of the Resize Observer specification.

unhandledRejection(coolingOffPeriod)

function unhandledRejection(coolingOffPeriod: number): SubscribableThing<any>;

This function emits unhandled rejections. It will listen for the unhandledrejection event to register possibly unhandled rejections. It will then wait for the cooling-off period to elapse before it emits the reason (aka the error) that caused the unhandled rejection. It is possible that a previously unhandled rejection gets handled later on in which case a rejectionhandled event will be fired. If that happens during the cooling-off period nothing will be emitted by this function.

videoFrame(videoElement)

function videoFrame(
    videoElement: HTMLVideoElement
): SubscribableThing<{ now: number } & IVideoFrameMetadata>;

This function wraps the requestVideoFrameCallback() method of the given HTMLVideoElement. It emits the current timestamp combined with the VideoFrameMetadata object.

wakeLock(type)

function wakeLock(type: TWakeLockType): SubscribableThing<boolen>;

This function simplifies the usage of the Screen Wake Lock API. It emits true when a wake lock could be acquired and emits false once the wake lock gets released by the browser. As long as the subscription is alive it will continuosly try to get a new wake lock if the current one gets released.

Alternatives

There are two similar packages available which are based directly on RxJS. They are rx-use and rxjs-web.

subscribable-things's People

Contributors

chrisguttandin avatar dy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

subscribable-things's Issues

An in-range update of tslint-config-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency tslint-config-holy-grail was updated from 48.1.0 to 48.1.1.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v48.1.1

all commits

Commits

The new version differs by 6 commits.

  • c74f233 48.1.1
  • e794541 fix(package): update tslint to version 6.1.1
  • 7797c1f fix(package): update rxjs-tslint-rules to version 4.30.1
  • 383432a fix(package): update rxjs to version 6.5.5
  • 24f856b fix(package): update eslint-config-holy-grail to version 46.0.14
  • 1b63a03 fix(package): update lockfile

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of tslint-config-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency tslint-config-holy-grail was updated from 48.0.6 to 48.0.7.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v48.0.7

all commits

Commits

The new version differs by 2 commits.

  • 7329ee8 48.0.7
  • 9156767 fix(package): update @angular/{compiler,core} to version 9.1.0

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of commitizen is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency commitizen was updated from 4.0.4 to 4.0.5.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

commitizen is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v4.0.5

4.0.5 (2020-04-30)

Bug Fixes

  • deps: bump vulnerable packages (ce1042e)
Commits

The new version differs by 2 commits.

  • ce1042e fix(deps): bump vulnerable packages
  • 09ade00 docs: add commitiquette (#727)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of eslint-config-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency eslint-config-holy-grail was updated from 46.0.9 to 46.0.10.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v46.0.10

all commits

Commits

The new version differs by 2 commits.

  • 4ca1486 46.0.10
  • 625590e fix(package): update eslint-plugin-unicorn to version 17.2.0

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of tslint-config-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency tslint-config-holy-grail was updated from 49.0.1 to 49.0.2.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v49.0.2

all commits

Commits

The new version differs by 6 commits.

  • eb485e1 49.0.2
  • 51dde2f fix(package): update tslint to version 6.1.2
  • 720e77b fix(package): update commitizen to version 4.0.5
  • ecfa680 fix(package): update @angular/{compiler,core} to version 9.1.4
  • acd5fd8 fix(package): update mocha to version 7.1.2
  • 31f7ee9 fix(package): update eslint-config-holy-grail to version 46.0.16

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of tslint-config-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency tslint-config-holy-grail was updated from 48.1.2 to 48.1.3.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v48.1.3

all commits

Commits

The new version differs by 4 commits.

  • 703ee7b 48.1.3
  • 62e4250 fix(package): update @angular/{compiler,core} to version 9.1.2
  • 1939873 fix(package): update husky to version 4.2.5
  • 28192b7 fix(package): update husky to version 4.2.4

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of rollup is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency rollup was updated from 2.0.5 to 2.0.6.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

rollup is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 3 commits.

  • c0b73e4 2.0.6
  • cb8ec41 Update changelog
  • a6c450e Use correct file names when writing sourcemaps for multiple outputs (#3440)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of tslint-config-holy-grail is breaking the build ๐Ÿšจ

The devDependency tslint-config-holy-grail was updated from 48.0.2 to 48.0.3.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v48.0.3

all commits

Commits

The new version differs by 2 commits.

  • 2c6cc29 48.0.3
  • 28f47ab fix(package): update @angular/{compiler,core} to version 9.0.5

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of eslint-config-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency eslint-config-holy-grail was updated from 46.0.15 to 46.0.16.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v46.0.16

all commits

Commits

The new version differs by 3 commits.

  • 0a5366a 46.0.16
  • c977fca fix(package): update mocha to version 7.1.2
  • fd3a2b4 fix(package): update eslint-plugin-unicorn to version 19.0.1

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of grunt is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency grunt was updated from 1.0.4 to 1.1.0.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

grunt is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v1.1.0
  • Update to mkdirp ~1.0.3
  • Only support versions of Node >= 8
Commits

The new version differs by 8 commits.

  • d5cdac0 Merge pull request #1706 from gruntjs/tag-neew
  • 4674c59 v1.1.0
  • 6124409 Merge pull request #1705 from gruntjs/mkdirp-update
  • 0a66968 Fix up Buffer usage
  • 4bfa98e Support versions of node >= 8
  • f1898eb Update to mkdirp ~1.0.3
  • 75da17b HTTPS link to gruntjs.com (#1683)
  • 6795d31 Update js-yaml dependecy to ~3.13.1 (#1680)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of tsconfig-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency tsconfig-holy-grail was updated from 11.0.3 to 11.0.4.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tsconfig-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v11.0.4

all commits

Commits

The new version differs by 5 commits.

  • 081aa83 11.0.4
  • 26ead9d fix(package): update @types/node to version 12.12.30
  • 9c24ee9 fix(package): update eslint-config-holy-grail to version 46.0.10
  • 555240f fix(package): update eslint-config-holy-grail to version 46.0.9
  • 312a7e0 fix(package): update lockfile

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of tsconfig-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency tsconfig-holy-grail was updated from 11.0.7 to 11.0.8.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tsconfig-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v11.0.8

all commits

Commits

The new version differs by 6 commits.

  • 8cf1794 11.0.8
  • d114443 fix(package): update husky to version 4.2.5
  • 8829374 fix(package): update @types/node to version 12.12.35
  • 7a4b166 fix(package): update commitizen to version 4.0.4
  • d4ee905 fix(package): update eslint-config-holy-grail to version 46.0.14
  • 402e400 fix(package): update lockfile

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of rollup is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency rollup was updated from 2.4.0 to 2.5.0.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

rollup is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of rollup is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency rollup was updated from 2.6.0 to 2.6.1.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

rollup is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v2.6.1

2020-04-12

Bug Fixes

  • Close watch mode when stdin closes in a non-TTY environment (#3493)

Pull Requests

Commits

The new version differs by 4 commits.

  • e440b70 Use chokidar as test watcher
  • 51b0b2e 2.6.1
  • 58b726b Update changelog
  • 57bb54e Ensure --watch mode exits correctly when stdin is closed. (#3493)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of rollup is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency rollup was updated from 2.7.0 to 2.7.1.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

rollup is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v2.7.1

2020-04-21

Bug Fixes

  • Use correct path for dynamic imports if output.paths is used (#3508)

Pull Requests

Commits

The new version differs by 3 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of tslint-config-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency tslint-config-holy-grail was updated from 48.0.8 to 48.0.9.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v48.0.9

all commits

Commits

The new version differs by 4 commits.

  • 2ac39c0 48.0.9
  • 5aa2d85 fix(package): update eslint-config-holy-grail to version 46.0.12
  • ee77d0d fix: remove check-pipe option of angular-whitespace rule
  • a390850 fix(package): update eslint-config-holy-grail to version 46.0.11

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of karma-browserstack-launcher is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency karma-browserstack-launcher was updated from 1.5.1 to 1.5.2.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

karma-browserstack-launcher is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 10 commits.

  • 5a5aa59 Merge pull request #175 from yashLadha/master
  • e92b624 src: updated minor version for release
  • 5ec5e03 Merge pull request #158 from csvn/fix-configuration-options
  • b83641a fix: make configuration options work again
  • 76dbfd0 Merge pull request #169 from johnjbarton/node-version
  • c7d3de5 chore(ci): run tests on modern node engines
  • a1b7fa6 Merge pull request #167 from rchougule/readme_cap_fix
  • 624494e removed incompatible cap from readme
  • 22ccf91 Merge pull request #148 from Varun-garg/patch-1
  • 620a733 Update CHANGELOG.md

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of karma is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency karma was updated from 5.0.3 to 5.0.4.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

karma is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v5.0.4

5.0.4 (2020-04-30)

Bug Fixes

  • browser: make sure that empty results array is still recognized (#3486) (fa95fa3)
Commits

The new version differs by 6 commits.

  • 633f833 chore(release): 5.0.4 [skip ci]
  • 810489d refactor(test): migrate Proxy to ES2015 (#3490)
  • fa95fa3 fix(browser): make sure that empty results array is still recognized (#3486)
  • 255bf67 refactor(test): migrate World to ES2015 (#3489)
  • be5db67 chore(test): remove usage of deprecated defineSupportCode (#3488)
  • 69c7ba3 chore(test): add test for flush resultsBuffer on engine upgrade (#3487)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of babel7 is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


There have been updates to the babel7 monorepo:

    • The devDependency @babel/core was updated from 7.8.7 to 7.9.0.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

This monorepo update includes releases of one or more dependencies which all belong to the babel7 group definition.

babel7 is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of rollup is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency rollup was updated from 2.7.3 to 2.7.4.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

rollup is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v2.7.4

2020-04-29

Bug Fixes

  • Fix an issue where wrong variable names were used when preserving modules (#3521)

Pull Requests

Commits

The new version differs by 3 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of rollup is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency rollup was updated from 2.3.5 to 2.4.0.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

rollup is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v2.4.0

2020-04-09

Features

  • Add support for most private and public class field features (#3492)

Bug Fixes

  • Do not replace this with undefined in class field definitions (#3492)

Pull Requests

Commits

The new version differs by 3 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of babel7 is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


There have been updates to the babel7 monorepo:

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

This monorepo update includes releases of one or more dependencies which all belong to the babel7 group definition.

babel7 is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of tslint-config-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency tslint-config-holy-grail was updated from 48.0.4 to 48.0.5.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v48.0.5

all commits

Commits

The new version differs by 3 commits.

  • fa67170 48.0.5
  • 5b2b542 fix(package): update zone.js to version 0.10.3
  • f9aeefd fix(package): update grunt to version 1.1.0

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of mocha is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency mocha was updated from 7.1.0 to 7.1.1.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

mocha is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v7.1.1

7.1.1 / 2020-03-18

๐Ÿ”’ Security Fixes

  • #4204: Update dependencies mkdirp, yargs-parser and yargs (@juergba)

๐Ÿ› Fixes

๐Ÿ“– Documentation

Commits

The new version differs by 6 commits.

  • 7c09e63 Release v7.1.1
  • 7599535 update CHANGELOG for v7.1.1 [ci skip]
  • 3bf650c security: update mkdirp, yargs, yargs-parser (#4204)
  • e1389ef Fix: runner listening to 'start' and 'end' events (#3660)
  • 9cbb6f6 upgrade assetgraph-builder
  • 4dc3cd1 docs: show netlify badge on footer (#4190)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of rollup-plugin-babel is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency rollup-plugin-babel was updated from 4.3.3 to 4.4.0.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

rollup-plugin-babel is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 2 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of rollup is breaking the build ๐Ÿšจ


๐Ÿšจ Reminder! Less than one month left to migrate your repositories over to Snyk before Greenkeeper says goodbye on June 3rd! ๐Ÿ’œ ๐Ÿšš๐Ÿ’จ ๐Ÿ’š

Find out how to migrate to Snyk at greenkeeper.io


The devDependency rollup was updated from 2.8.0 to 2.8.1.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

rollup is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 4 commits.

  • c445d60 2.8.1
  • 1094f82 Update changelog
  • e5cf74c Use default named export with plugins (#3529)
  • a2b961d Track call side-effects both by entity and CallExpression to avoid untracked side-effects in nested calls (#3539)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of eslint-config-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency eslint-config-holy-grail was updated from 46.0.7 to 46.0.8.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v46.0.8

all commits

Commits

The new version differs by 7 commits.

  • 7850b0e 46.0.8
  • 1301ff2 fix: rename unicorn/regex-shorthand to unicorn/better-regex
  • 7d0224b fix(package): update eslint-plugin-unicorn to version 17.0.0
  • c3b099e fix(package): update lockfile
  • fba176e fix(package): update mocha to version 7.1.0
  • 307e8b0 fix(package): update lockfile
  • 2c4bb94 fix(package): update husky to version 4.2.3

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of eslint-config-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency eslint-config-holy-grail was updated from 46.0.13 to 46.0.14.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Release Notes for v46.0.14

all commits

Commits

The new version differs by 3 commits.

  • db5abeb 46.0.14
  • cc89dd4 fix(package): update lockfile
  • c040318 fix: replace no-sync with node/no-sync rule

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of eslint-config-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency eslint-config-holy-grail was updated from 46.0.14 to 46.0.15.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v46.0.15

all commits

Commits

The new version differs by 5 commits.

  • ccb7f59 46.0.15
  • 2ef727f fix(package): update eslint-plugin-unicorn to version 19.0.0
  • 0faf580 fix(package): update lockfile
  • 758c948 fix(package): update husky to version 4.2.5
  • 9f66f3c fix(package): update commitizen to version 4.0.4

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of tslint-config-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency tslint-config-holy-grail was updated from 48.0.5 to 48.0.6.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v48.0.6

all commits

Commits

The new version differs by 5 commits.

  • 10be218 48.0.6
  • 9b8adb4 fix(package): update rxjs-tslint-rules to version 4.29.2
  • 5db5b6e fix(package): update @angular/{compiler,core} to version 9.0.7
  • 329fcd8 fix(package): update lockfile
  • bacc324 fix(package): update mocha to version 7.1.1

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of husky is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency husky was updated from 4.2.4 to 4.2.5.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

husky is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v4.2.5
  • Fix wrong error message #709
  • Update dependencies #710
Commits

The new version differs by 4 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of tsconfig-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency tsconfig-holy-grail was updated from 11.0.8 to 11.0.9.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tsconfig-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v11.0.9

all commits

Commits

The new version differs by 3 commits.

  • e19abe0 11.0.9
  • 231ee64 fix(package): update @types/node to version 12.12.37
  • 670052e fix(package): update lockfile

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of rollup is breaking the build ๐Ÿšจ


๐Ÿšจ Reminder! Less than one month left to migrate your repositories over to Snyk before Greenkeeper says goodbye on June 3rd! ๐Ÿ’œ ๐Ÿšš๐Ÿ’จ ๐Ÿ’š

Find out how to migrate to Snyk at greenkeeper.io


The devDependency rollup was updated from 2.8.2 to 2.9.0.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

rollup is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v2.9.0

2020-05-10

Features

  • Add ids of static and dynamic imports to this.getModuleInfo (#3542)
  • Provide getModuleInfo and getModuleIds to manualChunks functions (#3542)
  • Add nullish coalescing support (#3548)
  • Make the rebuild delay in watch mode configurable and set the default to 0 for snappy rebuilds (#3502)
  • Add this.getModuleIds to the plugin context as future replacement for this.moduleIds (#3542)

Pull Requests

Commits

The new version differs by 7 commits.

  • 67ebd53 2.9.0
  • 6d6a180 Fix watch tests on Mac
  • c6c2532 Update changelog
  • 7e5c0d2 Configurable Build Delay (Currently Hardcoded at 200ms) (#3502)
  • f63e54d Extend manualChunks API (#3542)
  • e6d6876 Support nullish coalescing with tree-shaking (#3548)
  • 6919037 Update changelog

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of karma is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency karma was updated from 5.0.2 to 5.0.3.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

karma is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v5.0.3

5.0.3 (2020-04-29)

Bug Fixes

Commits

The new version differs by 9 commits.

  • dee09d8 chore(release): 5.0.3 [skip ci]
  • e44ca94 fix(client): flush resultsBuffer on engine upgrade (#3212)
  • f9ef33a chore(test): update Cucumber to the latest version (#3480)
  • 3b854ad chore(ci): fix BrowserStack timeouts (#3484)
  • 518d001 chore(ci): cleanup Travis config (#3481)
  • fc9ea9a chore(ci): use recommended timeouts for browserstack (#3475)
  • fd8c3a6 chore(test): remove @not-jenkins tag for Cucumber tests (#3479)
  • b52333d docs: simplify repository setup steps (#3478)
  • 652e24e chore(build): run cucumber tests using NPM scripts instead of Grunt (#3476)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of tslint-config-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency tslint-config-holy-grail was updated from 48.0.7 to 48.0.8.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v48.0.8

all commits

Commits

The new version differs by 2 commits.

  • b7261ba 48.0.8
  • 0f5f87f fix(package): update codelyzer to version 5.2.2

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of commitizen is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency commitizen was updated from 4.0.3 to 4.0.4.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

commitizen is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v4.0.4

4.0.4 (2020-04-07)

Bug Fixes

  • add babel spread plugin (7642f05)
  • move to babel.config.js (9ae386c)
  • update azure devops images (607d514)
Commits

The new version differs by 7 commits.

  • 607d514 fix: update azure devops images
  • 9ae386c fix: move to babel.config.js
  • 7642f05 fix: add babel spread plugin
  • bd5a0ba chore(deps): update dependency nyc to v15 (#704)
  • f322e2c chore(deps): bump minimist from 1.2.0 to 1.2.3 (#721)
  • 8950d5c docs: Add short circuit to hook example (#665)
  • a472e52 docs: fix typo in code inside README.md (#662)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of rollup is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency rollup was updated from 2.3.2 to 2.3.3.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

rollup is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v2.3.3

2020-04-04

Bug Fixes

  • Add external namespaces to dynamic namespace objects (#3474)

Pull Requests

Commits

The new version differs by 6 commits.

  • d18cb37 2.3.3
  • 153cec8 Update changelog
  • 74cec2e feat: support external star exports on namespace objects (#3474)
  • 722bc25 Update changelog
  • 9e346a8 Update changelog
  • b97754c output.{compact,esModule} doc: move Default to newline (#3483)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of tslint-config-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency tslint-config-holy-grail was updated from 48.1.3 to 48.1.4.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v48.1.4

all commits

Commits

The new version differs by 3 commits.

  • ae43b8a 48.1.4
  • 8b56b3e fix(package): update @angular/{compiler,core} to version 9.1.3
  • 228b8b6 fix(package): update lockfile

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of mocha is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency mocha was updated from 7.1.1 to 7.1.2.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

mocha is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v7.1.2

7.1.2 / 2020-04-26

๐Ÿ”ฉ Other

๐Ÿ“– Documentation

Commits

The new version differs by 7 commits.

  • 27aeb80 Release v7.1.2
  • e3df026 update CHANGELOG for v7.1.2 [ci skip]
  • 7f75489 add test case: type check before calling retriedTest()
  • e659027 type check before calling retriedTest()
  • eba6ec7 Remove Runnable#inspect() and utils.ngettext() (#4230)
  • a4a4d50 add wallaby logo to bottom of site
  • c600547 update mkdirp to v0.5.5 (#4222)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of webpack is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency webpack was updated from 4.42.1 to 4.43.0.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

webpack is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v4.43.0

Features

  • add module.hot.invalidate() to HMR API

Dependencies

  • push versions for forced security updates
Commits

The new version differs by 17 commits.

  • c9d4ff7 4.43.0
  • 9a2febd Merge pull request #10715 from webpack/hmr/invalidate-4
  • a53bb8f add invalidate method to HMR
  • 4c644bf Merge pull request #10518 from TechieForFun/webpack-4
  • 9efaba2 Merge pull request #10571 from mjziolko/watchpack-vuln
  • a704715 Merge pull request #10622 from webpack/ci/fix-azure
  • 7f843e8 fix vm images in azure
  • 9c23e18 Update watchpack to the most recent minor version to remove mimimist vulnerability.
  • 499b537 revert unneccessary changes
  • c9bb7a9 Update snapshots of tests
  • 4023e8c Update package.json, yarn.lock
  • 2ca966c Update package.json
- [`a7cfbfe`](https://github.com/webpack/webpack/commit/a7cfbfe0b16a2a34e13491e7cecdbc0676904786) Update package.json - [`f97fedc`](https://github.com/webpack/webpack/commit/f97fedc0c63a546e9f2eee8a3513ef0cd1624af4) Update package.json for tests - [`3320b9d`](https://github.com/webpack/webpack/commit/3320b9dfd88785d1bbc15d51dc8dc05f09445f99) Update on yarn.lock

There are 17 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of tslint-config-holy-grail is breaking the build ๐Ÿšจ


๐Ÿšจ Reminder! Less than one month left to migrate your repositories over to Snyk before Greenkeeper says goodbye on June 3rd! ๐Ÿ’œ ๐Ÿšš๐Ÿ’จ ๐Ÿ’š

Find out how to migrate to Snyk at greenkeeper.io


The devDependency tslint-config-holy-grail was updated from 49.0.3 to 49.0.4.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v49.0.4

all commits

Commits

The new version differs by 2 commits.

  • a178cc1 49.0.4
  • 9e0c5fb fix(package): update @angular/{compiler,core} to version 9.1.6

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of rollup is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency rollup was updated from 2.7.1 to 2.7.2.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

rollup is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v2.7.2

2020-04-22

Bug Fixes

  • Prevent an infinite loop when creating separate manual chunks with circular dependencies (#3510)
  • Do not fail if "super" is used in the definition of a class field (#3511)
  • Throw if a plugin tries to emit a file with an absolute Windows path (#3509)

Pull Requests

Commits

The new version differs by 5 commits.

  • 97e6fa8 2.7.2
  • eac5b3d Update changelog
  • bd2973a fix: ban emitFile via absolute paths on Windows OS (#3509)
  • 0d352bf Support "super" in class fields (#3511)
  • f65bae1 Do not fail for circular imports between manual chunks (#3510)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of eslint-config-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency eslint-config-holy-grail was updated from 46.0.10 to 46.0.11.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

eslint-config-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v46.0.11

all commits

Commits

The new version differs by 5 commits.

  • bdd6af6 46.0.11
  • 9d48d14 fix(package): update eslint-plugin-unicorn to version 18.0.0
  • c22d1a0 fix(package): update mocha to version 7.1.1
  • d6cdf09 fix(package): update lockfile
  • 18d5911 fix(package): update grunt to version 1.1.0

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of rollup is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency rollup was updated from 2.0.6 to 2.1.0.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

rollup is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 4 commits.

  • f8bc018 2.1.0
  • 1f37bff Updage changelog
  • 60ed91f Add optional importer parameter to this.emitFile (#3442)
  • e019ea0 Correctly specify type of writeBundle hook in docs (#3441)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of commitizen is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency commitizen was updated from 4.0.5 to 4.1.0.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

commitizen is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v4.1.0

4.1.0 (2020-05-04)

Features

Commits

The new version differs by 2 commits.

  • 0f8644d feat: remove dependency on ShellJS (#729)
  • 6ef8afa feature: remove dependency on ShellJS (#729)

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of babel7 is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


There have been updates to the babel7 monorepo:

    • The devDependency @babel/core was updated from 7.9.0 to 7.9.6.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

This monorepo update includes releases of one or more dependencies which all belong to the babel7 group definition.

babel7 is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of webpack is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency webpack was updated from 4.42.0 to 4.42.1.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

webpack is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v4.42.1

Bugfixes

  • update webassemblyjs dependencies for instruction update
  • update mkdirp dependency for security reasons
Commits

The new version differs by 7 commits.

  • 71eb593 4.42.1
  • 7bc38d6 Merge pull request #10580 from jeffin143/update-mkdirp
  • a814ac9 update lockfile
  • f110b6e UPDATE mkdirp
  • 5f65ecb Merge pull request #10493 from jeffin143/fix-10489
  • 994df0f Order dependencies alphabetically
  • a06807b fix :10489 - Backport to webpack 4: wasm: v128 support

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of rollup is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency rollup was updated from 2.7.5 to 2.7.6.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

rollup is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v2.7.6

2020-04-30

Bug Fixes

  • Fix a type issue when a default export references a global variable (#3526)

Pull Requests

Commits

The new version differs by 3 commits.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of tsconfig-holy-grail is breaking the build ๐Ÿšจ


โ˜๏ธ Important announcement: Greenkeeper will be saying goodbye ๐Ÿ‘‹ and passing the torch to Snyk on June 3rd, 2020! Find out how to migrate to Snyk and more at greenkeeper.io


The devDependency tsconfig-holy-grail was updated from 11.0.4 to 11.0.5.

๐Ÿšจ View failing branch.

This version is covered by your current version range and after updating it in your project the build failed.

tsconfig-holy-grail is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.

Status Details
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v11.0.5

all commits

Commits

The new version differs by 5 commits.

  • c83dbec 11.0.5
  • 8659570 fix(package): update @types/node to version 12.12.31
  • 589dcba fix(package): update lockfile
  • 6919e10 fix(package): update mocha to version 7.1.1
  • eb40c85 fix(package): update grunt to version 1.1.0

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those donโ€™t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper Bot ๐ŸŒด

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.