Giter Site home page Giter Site logo

ryanhefner / react-timecode Goto Github PK

View Code? Open in Web Editor NEW
7.0 2.0 2.0 1.93 MB

⏳ Simple React component for displaying a timecode, with various formatting options.

Home Page: https://www.pkgstats.com/pkg:react-timecode

License: MIT License

JavaScript 100.00%
react react-component timecode react-timecode react-timer-wrapper

react-timecode's Introduction

⏳ react-timecode

npm NPM npm Coveralls github CircleCI Known Vulnerabilities Twitter Follow

Simple React component for displaying a timecode, with various formatting options.

Install

Via npm

npm install --save react-timecode

Via Yarn

yarn add react-timecode

How to use

The Timecode component is setup to be configurable as it needs to be, and hopefully nothing more. Below are the props you can set on the component, along with a simple example.

Properties

  • as:String|Function - Element to render the timecode within. (Default: span)
  • [DEPRECATED] component:String|Function - Element to render the timecode within. (Default: span)
  • format:String - Specifies the format to display the timecode. (Default: H:?m:ss)
    • HH:mm:ss.SSS - (Example: 00:01:23.876)
    • H:mm:ss.SSS - (Example: 0:01:23.876)
    • H:?mm:ss.SSS - (Example: 01:23.876)
    • H:?m:ss.SSS - (Example: 1:23.876)
    • HH:mm:ss - (Example: 00:01:23)
    • H:mm:ss - (Example: 0:01:23)
    • H:?mm:ss - (Example: 01:23)
    • H:mm - (Example: 0:01)
    • s.SSS - (Example: 0.000)
    • s.SS - (Example: 0.00)
    • mm:ss - (Example: 90:00)
    • H:?mm:ss - (Example: 00:00)
    • H:?m:ss - (Example: 1:23 - Default)
  • postfix:String - Append a string after the formatted timecode.
  • prefix:String - Include a string before the formatted timecode.
  • time:Number - Time in milliseconds to display the timecode for. (Default: 0)

Example

import Timecode from 'react-timecode';

...

  render() {
    const {
      time,
    } = this.state;

    return (
      <Timecode time={time} />
    );
  }

...

Utilities

In addition to the Timecode component, the underlying utility methods that the component uses for rendering the timecodes have also been exposed, in case you have some need to render some strings without the context of the component.

  • parseTime(time:Number): { hours: Number, minutes: Number, seconds: Number, milliseconds: Number }
  • pad(number: Number, length: Number = 2): String
  • formatMilliseconds(milliseconds: Number, length: Number = 3): String
  • formatTimecode({ format: String, time: Number }): String

Pairs well with...

License

MIT © Ryan Hefner

react-timecode's People

Contributors

greenkeeper[bot] avatar greenkeeperio-bot avatar ryanhefner avatar snyk-bot avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

react-timecode's Issues

An in-range update of enzyme is breaking the build 🚨

Version 3.4.2 of the enzyme packages was just published.

Branch Build failing 🚨
Monorepo release group enzyme
Current Version 3.4.1
Type devDependency

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 enzyme group definition.

enzyme 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
  • ci/circleci: Your tests failed on CircleCI (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 babel-plugin-transform-react-remove-prop-types is breaking the build 🚨

The devDependency babel-plugin-transform-react-remove-prop-types was updated from 0.4.15 to 0.4.16.

🚨 View failing branch.

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

babel-plugin-transform-react-remove-prop-types 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Release Notes for v0.4.16
  • [new] update Babel 7 (#155)
  • [fix] Remove unused MemberExpression root identifiers (#158)
  • [fix] Use regex.test(str) instead of str.match(regex) (#152)
  • [fix] Replace Set with WeakSet for collecting removed paths (#151)
Commits

The new version differs by 9 commits.

  • fb3c061 0.4.16
  • fbca3d7 Update prettier
  • 70e73d6 Update babel devDependencies
  • 3c78036 Remove unused MemberExpression root identifiers (#158)
  • 5fa6824 Remove some unused Babel plugins (#157)
  • c7987f4 Use regex.test(str) instead of str.match(regex) (#152)
  • 4bca1e1 chore(package): update Babel 7 (#155)
  • 7c17eb2 Merge pull request #151 from oliviertassinari/weakset
  • 497ae63 Replace Set with WeakSet for collecting removed paths

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 clean-react-props is breaking the build 🚨

The dependency clean-react-props was updated from 0.2.8 to 0.2.9.

🚨 View failing branch.

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

clean-react-props 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Release Notes for v0.2.9
  • Update npm dependencies
  • Upgrade to Babel 7
Commits

The new version differs by 13 commits.

  • 7c66f7e 0.2.9
  • a454779 Exclude test from package and update build scripts
  • 18c1c98 Update npm dependencies and upgrade to Babel 7
  • e92ce06 Merge pull request #24 from ryanhefner/greenkeeper/rollup-plugin-babel-4.0.3
  • 546b579 Merge branch 'master' into greenkeeper/rollup-plugin-babel-4.0.3
  • 77ccfcc Merge pull request #23 from ryanhefner/greenkeeper/rollup-plugin-uglify-6.0.0
  • 6a13de5 Merge pull request #22 from ryanhefner/greenkeeper/rollup-0.66.0
  • 6d1bb66 chore(package): update lockfile package-lock.json
  • f53a629 chore(package): update rollup-plugin-uglify to version 6.0.0
  • ba781fe chore(package): update lockfile
  • 13ff525 chore(package): update lockfile package-lock.json
  • d52c7f7 chore(package): update rollup to version 0.66.0
  • db2a7b5 chore(package): update rollup-plugin-babel to version 4.0.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 babel-plugin-dev-expression is breaking the build 🚨

The devDependency babel-plugin-dev-expression was updated from 0.2.1 to 0.2.2.

🚨 View failing branch.

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

babel-plugin-dev-expression 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Release Notes for v0.2.2
  • Bugfix: Fix edge cases with __DEV__ (#8)
  • Chore: Synchronize with upstream (#9)
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 regenerator-runtime is breaking the build 🚨

The devDependency regenerator-runtime was updated from 0.13.1 to 0.13.2.

🚨 View failing branch.

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

regenerator-runtime 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
  • ci/circleci: Your tests failed on CircleCI (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 jest-enzyme is breaking the build 🚨

The devDependency jest-enzyme was updated from 6.0.4 to 6.0.5.

🚨 View failing branch.

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

jest-enzyme 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Release Notes for 6.0.5
  • Fix typescript definitions for toMatchElement options argument. (@mayhewluke)
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 clean-react-props is breaking the build 🚨

The dependency clean-react-props was updated from 0.2.11 to 0.2.12.

🚨 View failing branch.

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

clean-react-props 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Commits

The new version differs by 19 commits.

  • 902388b 0.2.12
  • 8a4c1de Update dependencies and resolve audit issues
  • 33e3f4f Check all dependency updates build and test properly
  • 0f1cbdb Merge pull request #39 from ryanhefner/greenkeeper/rollup-1.9.0
  • ca1b67b Merge branch 'master' into greenkeeper/rollup-1.9.0
  • 49a5de9 Merge pull request #38 from ryanhefner/greenkeeper/regenerator-runtime-0.13.2
  • bddabfd Merge branch 'master' into greenkeeper/regenerator-runtime-0.13.2
  • ddc5bd3 Merge pull request #37 from ryanhefner/greenkeeper/rollup-plugin-node-resolve-4.2.1
  • 3c14415 Merge branch 'master' into greenkeeper/rollup-plugin-node-resolve-4.2.1
  • c44314e Merge pull request #36 from ryanhefner/greenkeeper/rollup-plugin-json-4.0.0
  • da44df6 chore(package): update lockfile package-lock.json
  • 0f73837 chore(package): update rollup-plugin-node-resolve to version 4.2.1
  • 89b6ee0 chore(package): update lockfile
  • 350bf2e chore(package): update lockfile package-lock.json
  • d7dc818 chore(package): update rollup to version 1.9.0

There are 19 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 jsdom is breaking the build 🚨

The devDependency jsdom was updated from 12.0.0 to 12.1.0.

🚨 View failing branch.

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

jsdom 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Commits

The new version differs by 13 commits.

  • b2994f9 Version 12.1.0
  • 2fd2e89 runVMScript's new options argument does not work in browsers
  • c294f50 Add options to the dom.runVMScript method
  • c9c5a05 Add [expected fail] to test output
  • 1bfd7d7 Roll Web Platform Tests
  • dbff7dd Remove dead code
  • 31e23ef Pass through the element to custom resource laoders
  • 96b3787 Fix timing for async scripts
  • c96decf Move from sax to saxes for XML parsing
  • ed11465 Upgrade cssstyle dependency from ^1.0.0 to ^1.1.1
  • 8898b25 Implement fieldset's elements and type properties
  • 6a1722a Fix "input" and "change" events for HTMLInputElement
  • 0cba358 Minor code and README cleanups; note Node.js version requirement

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 jsdom is breaking the build 🚨

The devDependency jsdom was updated from 14.0.0 to 14.1.0.

🚨 View failing branch.

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

jsdom 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Commits

The new version differs by 24 commits.

  • a14aae0 Version 14.1.0
  • 519f6ab Update minimum nwsapi version to fix some selectors
  • 98f9c59 Add test for :scope selector in querySelector(All)
  • 2ed44cc Add test of matches() and namespaced elements
  • 2504854 Minor README updates
  • 118dca5 Do not processing non-browsing-context-connected <style>s
  • 4285e70 Fix HTML serialization breaking after setting certain properties
  • 865ad59 Verify that attributes don't have namespaces
  • 243811f Implement 's list property
  • 5ffec75 Implement 's options property
  • 9a38298 Fix 's label and value properties (#2546)
  • 1248015 Roll Web Platform Tests
  • 49353e2 Make innerHTML and outerHTML parsing spec compliant
  • a0b96af Fix disabled elements never again being .click()able
  • cc95abc Add activation behavior for links to javascript: URLs and fragments

There are 24 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 jest-enzyme is breaking the build 🚨

The devDependency jest-enzyme 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.

jest-enzyme 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Commits

The new version differs by 5 commits ahead by 5, behind by 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 rollup-plugin-json is breaking the build 🚨

The devDependency rollup-plugin-json was updated from 3.0.0 to 3.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-plugin-json 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Commits

The new version differs by 7 commits.

  • bb64f65 3.1.0
  • 97615d6 Update changelog
  • 1bcf81b Update dependencies and make tests rollup1.0 compatible (#46)
  • 4df5395 Update changelog
  • 2a528e3 Expose the "compact" and "namedExports" options (#45)
  • e9c01b9 Update changelog
  • 8de10c0 Update rollup-pluginutils to support null values in json (#44)

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 react is breaking the build 🚨

There have been updates to the react monorepo:

    • The devDependency react was updated from 16.6.1 to 16.6.2.

🚨 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 react group definition.

react 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
  • ci/circleci: Your tests failed on CircleCI (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 clean-react-props is breaking the build 🚨

The dependency clean-react-props was updated from 0.2.12 to 0.2.13.

🚨 View failing branch.

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

clean-react-props 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Release Notes for v0.2.13
  • Update npm depedencies
  • Change CircleCI to use npm
Commits

The new version differs by 8 commits.

  • a543ffe 0.2.13
  • 07a23d9 Update npm dependencies
  • c4230f3 Update CircleCI config to use npm instead of yarn
  • 1061db4 Delete yarn lock file and rebuild package lock file
  • becb036 Merge pull request #40 from ryanhefner/greenkeeper/rollup-1.9.1
  • d9eacb0 chore(package): update lockfile
  • 307d40e chore(package): update lockfile package-lock.json
  • 9caa06b chore(package): update rollup to version 1.9.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 rollup-plugin-commonjs is breaking the build 🚨

The devDependency rollup-plugin-commonjs was updated from 10.0.1 to 10.0.2.

🚨 View failing branch.

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

rollup-plugin-commonjs 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
  • ci/circleci: Your tests failed on CircleCI (Details).

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-plugin-babel is breaking the build 🚨

The devDependency rollup-plugin-babel was updated from 4.3.2 to 4.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-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
  • ci/circleci: Your tests failed on CircleCI (Details).

Commits

The new version differs by 5 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 🚨

There have been updates to the babel7 monorepoundefined

🚨 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
  • ci/circleci: Your tests failed on CircleCI (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 prop-types is breaking the build 🚨

The dependency prop-types was updated from 15.6.2 to 15.7.0.

🚨 View failing branch.

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

prop-types 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
  • ci/circleci: Your tests failed on CircleCI (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-plugin-commonjs is breaking the build 🚨

The devDependency rollup-plugin-commonjs was updated from 9.1.7 to 9.1.8.

🚨 View failing branch.

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

rollup-plugin-commonjs 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
  • ci/circleci: Your tests failed on CircleCI (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 🚨

The devDependency rollup was updated from 1.6.0 to 1.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
  • ci/circleci: Your tests failed on CircleCI (Details).

Release Notes for v1.6.1

2019-03-20

Bug Fixes

  • Avoid name clashes of unused default exports when tree-shaking is false (#2758)
  • Do not crash when generating SystemJS bundles containing array patterns with member expressions (#2760)

Pull Requests

Commits

The new version differs by 4 commits.

  • dfe1713 1.6.1
  • 7513859 Update changelog
  • 8166eb0 Handle member expressions in array patterns (#2760)
  • 26d2b31 Make sure unused default exports are deconflicted when tree-shaking is false (#2758)

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 clean-react-props is breaking the build 🚨

Version 0.2.4 of clean-react-props was just published.

Branch Build failing 🚨
Dependency clean-react-props
Current Version 0.2.3
Type dependency

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

clean-react-props 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
  • ci/circleci Your tests failed on CircleCI Details

Release Notes v0.2.4
  • Update dependencies
  • Update rollup.config.js to work with new version of rollup-plugin-uglify
Commits

The new version differs by 4 commits.

  • e80166d 0.2.4
  • 63b216b Merge pull request #10 from ryanhefner/greenkeeper/rollup-plugin-uglify-4.0.0
  • a24f196 Update Rollup config to work with new version of rollup-plugin-uglify
  • 88a5ecf chore(package): update rollup-plugin-uglify to version 4.0.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-plugin-uglify is breaking the build 🚨

The devDependency rollup-plugin-uglify was updated from 6.0.2 to 6.0.3.

🚨 View failing branch.

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

rollup-plugin-uglify 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
  • ci/circleci: Your tests failed on CircleCI (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 react is breaking the build 🚨

Version 16.5.0 of the react packages was just published.

Branch Build failing 🚨
Monorepo release group react
Current Version 16.4.2
Type devDependency

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 react group definition.

react 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
  • ci/circleci: Your tests failed on CircleCI (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-plugin-commonjs is breaking the build 🚨

The devDependency rollup-plugin-commonjs was updated from 9.2.1 to 9.2.2.

🚨 View failing branch.

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

rollup-plugin-commonjs 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
  • ci/circleci: Your tests failed on CircleCI (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-plugin-node-resolve is breaking the build 🚨

The devDependency rollup-plugin-node-resolve was updated from 4.0.1 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.

rollup-plugin-node-resolve 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
  • ci/circleci: Your tests failed on CircleCI (Details).

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 gzip-size is breaking the build 🚨

The devDependency gzip-size was updated from 5.1.0 to 5.1.1.

🚨 View failing branch.

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

gzip-size 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Release Notes for v5.1.1
  • Add missing TypeScript type for gzipSize.fileSync (#19) 429b6f1

v5.1.0...v5.1.1

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 regenerator-runtime is breaking the build 🚨

The devDependency regenerator-runtime was updated from 0.13.2 to 0.13.3.

🚨 View failing branch.

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

regenerator-runtime 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
  • ci/circleci: Your tests failed on CircleCI (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 enzyme is breaking the build 🚨

Version 3.4.1 of the enzyme packages was just published.

Branch Build failing 🚨
Monorepo release group enzyme
Current Version 3.4.0
Type devDependency

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 enzyme group definition.

enzyme 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
  • ci/circleci: Your tests failed on CircleCI (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 pretty-bytes is breaking the build 🚨

The devDependency pretty-bytes was updated from 5.1.0 to 5.2.0.

🚨 View failing branch.

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

pretty-bytes 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Release Notes for v5.2.0

v5.1.0...v5.2.0

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-plugin-node-resolve is breaking the build 🚨

The devDependency rollup-plugin-node-resolve was updated from 4.2.1 to 4.2.2.

🚨 View failing branch.

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

rollup-plugin-node-resolve 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Commits

The new version differs by 5 commits.

  • 9736d86 4.2.2
  • 5564de2 Update changelog
  • 3233cec Extend typings test
  • f582f9c Fix TypeScript Typings (rename and export Options interface) (#206)
  • 70f54ed fix mainFields typing (#207)

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 coveralls is breaking the build 🚨

The devDependency coveralls was updated from 3.0.3 to 3.0.4.

🚨 View failing branch.

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

coveralls 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Commits

The new version differs by 5 commits.

  • 8ac4325 version bump
  • 9d9c227 Bump extend from 3.0.1 to 3.0.2 (#226)
  • 33119a7 Bump js-yaml from 3.11.0 to 3.13.1 (#225)
  • f5549c7 Bump handlebars from 4.1.0 to 4.1.2 (#224)
  • 4df732b Style fix (#211)

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 jsdom is breaking the build 🚨

Version 11.12.0 of jsdom was just published.

Branch Build failing 🚨
Dependency jsdom
Current Version 11.11.0
Type devDependency

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

jsdom 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Commits

The new version differs by 22 commits.

  • 4d26c67 Version 11.12.0
  • d6688e5 Implement Element.prototype.closest()
  • 9191218 Upgrade NWSAPI to v2.0.7
  • 500a209 Change storageQuota to operate on code units, not bytes
  • 23d67eb Add the storageQuota option
  • b4db242 Remove unused form-data-symbols.js file
  • 70fd739 Fix a few entries in the changelog
  • eae1062 Upgrades cssstyle dependency to ^1.0.0
  • 022c204 Update hosts in Travis configuration
  • 2761d3c HashChangeEvent and PopStateEvent should no longer bubble
  • f1270e7 Roll Web Platform Tests
  • d6f8a97 Enable Blob-slice.html test in Node.js v10
  • 3afbc0f Implement Web storage - localStorage, sessionStorage, StorageEvent
  • 7b4db76 Handle Node.js v6 timeout in execution-timing tests
  • a5a7785 Run failing tests to confirm their status

There are 22 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 jest-enzyme is breaking the build 🚨

The devDependency jest-enzyme was updated from 7.0.2 to 7.1.0.

🚨 View failing branch.

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

jest-enzyme 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Commits

The new version differs by 7 commits ahead by 7, behind by 2.

  • ce4435c v7.1.0
  • abda4f9 7.1.0 Changelog
  • 48b6067 Better messaging for component selectors
  • 1bad9a4 Fix Assertions link in Jest-Enzyme README
  • 24d93cc Allowing some assertions to be called on lists of nodes
  • c10a936 add maintenance status note to readme (#303)
  • a6b0758 Release7.0.2 (#301)

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-commonjs is breaking the build 🚨

The devDependency rollup-plugin-commonjs was updated from 10.0.0 to 10.0.1.

🚨 View failing branch.

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

rollup-plugin-commonjs 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Commits

The new version differs by 6 commits.

  • 1bc5896 10.0.1
  • 504ec54 Update changelog
  • 668d888 Update dependencies
  • 99d1ff5 Handle builins appropriately for resolve 1.11.0. Fixes #394. (#395)
  • 3bf824b Update changelog
  • 29cfe83 Make tests run with Node 6 again and update dependencies (#389)

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-commonjs is breaking the build 🚨

The devDependency rollup-plugin-commonjs was updated from 10.0.2 to 10.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-plugin-commonjs 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
  • ci/circleci: Your tests failed on CircleCI (Details).

Commits

The new version differs by 4 commits.

  • 12a11c2 10.1.0
  • 82ca3a2 Update changelog
  • fcd9826 Normalize ids before looking up in named export map (#406)
  • e431c29 Update README.md with note on symlinks (#405)

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 🚨

The devDependency rollup was updated from 0.66.0 to 0.66.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
  • ci/circleci: Your tests failed on CircleCI (Details).

Commits

The new version differs by 6 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 🚨

The devDependency rollup was updated from 1.9.0 to 1.9.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
  • ci/circleci: Your tests failed on CircleCI (Details).

Release Notes for v1.9.1

2019-04-10

Bug Fixes

  • Make sure inline comments in dynamic imports are preserved (#2797)

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 🌴

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.