Giter VIP home page Giter VIP logo

karma-postcss-preprocessor's Introduction

karma-postcss-preprocessor

Karma preprocessor to compile postcss and scss files with Postcss.

Travis AppVeyor Codecov Greenkeeper badge license

Installation

npm install postcss @metahub/karma-postcss-preprocessor --save-dev

Postcss plugins have to be installed individually. For example:

npm install autoprefixer cssnano --save-dev

Configuration

All the postcss options can be passed to postcssPreprocessor.options.

In addition the preprocessor accept a transformPath function, to rewrite the path on which the files are deployed on the Karma webserver. If not specified, the processed files will be accessible with the same paths as the originals. For example test/fixtures/myStyle.css will be deployed as base/test/fixtures/myStyle.css.

Standard

const autoprefixer = require('autoprefixer');
const cssnano = require('cssnano');

module.exports = function(config) {
  config.set({
    files: ['src/sass/main.css'],

    plugins: ['@metahub/karma-postcss-preprocessor', 'karma-*'],
    preprocessors: {
      '**/*.css': ['postcss'],
    },

    postcssPreprocessor: {
      options: {
        // To include inlined sourcemaps as data URIs
        map: true,
        plugins: [autoprefixer, cssnano],
      },
      // File test/fixtures/main.ccs will be accessible in the unit test on path base/styles/main.css
      transformPath: filePath => filePath.replace('test/fixtures/', 'styles/')
    },
  });
};

Note: Karma can auto-load plugins named karma-* (see plugins). Unfortunatly it doesn't work with scoped packages, therefore @metahub/karma-postcss-preprocessor has to be explicitly added to the plugins configuration. In order to continue to automatically load other plugins you can add karma-* to the plugins configuration.

Note: @metahub/karma-postcss-preprocessor embed its own watcher to monitor imported dependencies, therefore only the main entry point has to be configured in Karma. If Karma is configured with autoWatch: true, the modification of an imported css file will trigger a new build and test run.

Configured Preprocessors

See configured preprocessors.

const autoprefixer = require('autoprefixer');
const cssnano = require('cssnano');

module.exports = function(config) {  
  config.set({
    files: ['src/sass/main.css', 'test/fixtures/myFixture.css'],

    plugins: ['@metahub/karma-postcss-preprocessor', 'karma-*'],
    preprocessors: {
      'src/**/*.css': ['postcss_1'],
      'test/fixtures/**/*.css': ['postcss_2'],
    },

    customPreprocessors: {
      postcss_1: {
        base: 'postcss',
        options: {
          plugins: [autoprefixer, cssnano]
          map: true,
        },
        // File test/fixtures/myFixture.ccs will be accessible in the unit test on path test/fixtures/myFixture.min.ccs
        transformPath: filePath => filePath.replace(/\.css$/, '.min.css')
      },
      postcss_2: {
        base: 'postcss',
        options: {
          plugins: [autoprefixer],
        },
      },
    },
  });
};

With karma-sass-preprocessor

To compile sass/scss files with node-sass then process them with Postcss you can use @metahub/karma-sass-preprocessor.

npm install node-sass @metahub/karma-sass-preprocessor --save-dev
const autoprefixer = require('autoprefixer');
const cssnano = require('cssnano');

module.exports = function(config) {
  config.set({
    files: ['src/sass/main.scss', 'test/fixtures/myFixture.scss'],

    plugins: ['@metahub/karma-sass-preprocessor', '@metahub/karma-postcss-preprocessor', 'karma-*'],
    preprocessors: {
      'src/**/*.scss': ['sass', 'postcss'],
      'test/fixtures/**/*.scss': ['sass', 'postcss'],
    },

    sassPreprocessor: {
      options: {
        sourceMap: true,
      },
    },
    postcssPreprocessor: {
      options: {
        map: true,
        plugins: [autoprefixer, cssnano],
      },
    },
  });
};

karma-postcss-preprocessor's People

Contributors

greenkeeper[bot] avatar greenkeeperio-bot avatar pvdlg avatar

Watchers

 avatar  avatar

karma-postcss-preprocessor's Issues

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

Version 12.2.2 of semantic-release was just published.

Branch Build failing ๐Ÿšจ
Dependency semantic-release
Current Version 12.2.1
Type devDependency

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

semantic-release 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/appveyor/branch AppVeyor build succeeded Details
  • โŒ continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes v12.2.2

12.2.2 (2018-01-13)

Bug Fixes

  • set node minimum version to 8.3 (cc0c312)
Commits

The new version differs by 1 commits.

  • cc0c312 fix: set node minimum version to 8.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 cssnano is breaking the build ๐Ÿšจ

Version 4.0.5 of cssnano was just published.

Branch Build failing ๐Ÿšจ
Dependency cssnano
Current Version 4.0.4
Type devDependency

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

cssnano 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).
  • โŒ continuous-integration/appveyor/branch: AppVeyor build failed (Details).

Release Notes 4.0.5

Bug Fixes

  • postcss-merge-longhand now correctly merges borders with custom properties.
  • postcss-merge-longhand doesn't throw error in some border merge cases.
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 cssnano is breaking the build ๐Ÿšจ

Version 4.1.0 of cssnano was just published.

Branch Build failing ๐Ÿšจ
Dependency cssnano
Current Version 4.0.5
Type devDependency

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

cssnano 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/appveyor/branch: Waiting for AppVeyor build to complete (Details).
  • โŒ continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Release Notes 4.1.0

Bug Fixes

  • postcss-merge-longhand doesn't mangle borders.

Features

  • postcss-ordered-values support ordering animation values.
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 p-event is breaking the build ๐Ÿšจ

The devDependency p-event was updated from 2.2.0 to 2.3.0.

๐Ÿšจ View failing branch.

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

p-event 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/appveyor/branch: Waiting for AppVeyor build to complete (Details).
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v2.3.0
  • Add limit option to pEvent.iterator() (#16) 8b49e21
  • Make pEvent.iterator() implement return() correctly (#20) 68d745a
  • Add support for multiple event names (#19) db3203f

v2.2.0...v2.3.0

Commits

The new version differs by 5 commits.

  • 0a8c9cb 2.3.0
  • e4badc5 Meta tweaks
  • 8b49e21 Add limit option to pEvent.iterator() (#16)
  • 68d745a Make .iterator() implement return() correctly (#20)
  • db3203f Add support for multiple event names (#19)

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-plugin-prettier is breaking the build ๐Ÿšจ

Version 2.5.0 of eslint-plugin-prettier was just published.

Branch Build failing ๐Ÿšจ
Dependency eslint-plugin-prettier
Current Version 2.4.0
Type devDependency

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

eslint-plugin-prettier 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/appveyor/branch AppVeyor build succeeded Details
  • โŒ continuous-integration/travis-ci/push The Travis CI build could not complete due to an error Details

Commits

The new version differs by 3 commits.

  • eba622e Build: update package.json and changelog for v2.5.0
  • 0b6ab55 Fix: pass filepath to prettier (#76)
  • 804ead7 Update: Add URL to rule documentation to the metadata (#75)

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 monorepo:

    • The devDependency @babel/core was updated from 7.7.0 to 7.7.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 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 postcss is breaking the build ๐Ÿšจ

The devDependency postcss was updated from 7.0.9 to 7.0.10.

๐Ÿšจ View failing branch.

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

postcss 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/appveyor/branch: Waiting for AppVeyor build to complete (Details).
  • โŒ continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (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 eslint-config-prettier is breaking the build ๐Ÿšจ

Version 2.4.0 of eslint-config-prettier just got published.

Branch Build failing ๐Ÿšจ
Dependency eslint-config-prettier
Current Version 2.3.0
Type devDependency

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

As eslint-config-prettier is โ€œonlyโ€ a devDependency of this project it might not break production or downstream projects, but โ€œonlyโ€ your build or test tools โ€“ preventing new deploys or publishes.

I recommend you give this issue a high priority. Iโ€™m sure you can resolve this ๐Ÿ’ช

Status Details
  • โœ… continuous-integration/travis-ci/push The Travis CI build passed Details
  • โŒ continuous-integration/appveyor/branch AppVeyor build failed Details

Commits

The new version differs by 4 commits.

  • 68537d1 eslint-config-prettier v2.4.0
  • cd99265 Fix broken link in changelog
  • cd84a6b Update dependencies
  • 42dd938 Turn off function-paren-newline, introduced in ESLint v4.6.0 (#27)

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot ๐ŸŒด

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

The devDependency karma-jasmine was updated from 3.1.0 to 3.1.1.

๐Ÿšจ View failing branch.

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

karma-jasmine 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 v3.1.1

3.1.1 (2020-02-11)

Bug Fixes

  • adapter: do not emit debug url unless in a browser (#263) (9bcce88), closes #262
Commits

The new version differs by 7 commits.

  • 4ad7dd2 chore(release): 3.1.1 [skip ci]
  • 9bcce88 fix(adapter): do not emit debug url unless in a browser (#263)
  • fb33d57 chore(readme): fix devDependencies link
  • 93a2871 chore: update devDependencies (#259)
  • a813c8a chore: minor README.md tweaks (#258)
  • 5684394 chore(npm): select lib files rather than ignore random files (#257)
  • 4f1bcc9 chore(npm): ignore zip files in root (#255)

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 rimraf is breaking the build ๐Ÿšจ

The devDependency rimraf was updated from 2.6.3 to 2.7.0.

๐Ÿšจ View failing branch.

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

rimraf 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/appveyor/branch: Waiting for AppVeyor build to complete (Details).
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 2 commits.

  • 250ee15 2.7.0
  • dc1682d feat: make it possible to omit glob dependency

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 postcss is breaking the build ๐Ÿšจ

Version 6.0.15 of postcss was just published.

Branch Build failing ๐Ÿšจ
Dependency postcss
Current Version 6.0.14
Type devDependency

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

postcss 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/appveyor/branch AppVeyor build succeeded Details
  • โŒ continuous-integration/travis-ci/push The Travis CI build could not complete due to an error Details

Release Notes 6.0.15
  • Add warning about missed from option on process().then() call.
  • Add IE 10 support.
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 semantic-release is breaking the build ๐Ÿšจ

The devDependency semantic-release was updated from 15.13.11 to 15.13.12.

๐Ÿšจ View failing branch.

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

semantic-release 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/appveyor/branch: Waiting for AppVeyor build to complete (Details).
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v15.13.12

15.13.12 (2019-04-15)

Bug Fixes

  • package: update resolve-from to version 5.0.0 (6f3c21a)
Commits

The new version differs by 1 commits.

  • 6f3c21a fix(package): update resolve-from to version 5.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 chokidar is breaking the build ๐Ÿšจ

The dependency chokidar was updated from 3.3.0 to 3.3.1.

๐Ÿšจ View failing branch.

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

chokidar 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 could not complete due to an error (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 @commitlint/cli is breaking the build ๐Ÿšจ

Version 3.2.0 of @commitlint/cli just got published.

Branch Build failing ๐Ÿšจ
Dependency @commitlint/cli
Current Version 3.1.3
Type devDependency

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

As @commitlint/cli is โ€œonlyโ€ a devDependency of this project it might not break production or downstream projects, but โ€œonlyโ€ your build or test tools โ€“ preventing new deploys or publishes.

I recommend you give this issue a high priority. Iโ€™m sure you can resolve this ๐Ÿ’ช

Status Details
  • โœ… continuous-integration/appveyor/branch AppVeyor build succeeded Details
  • โŒ continuous-integration/travis-ci/push The Travis CI build could not complete due to an error Details

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot ๐ŸŒด

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

The devDependency cssnano was updated from 4.1.5 to 4.1.6.

๐Ÿšจ View failing branch.

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

cssnano 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 passed (Details).
  • โŒ continuous-integration/appveyor/branch: AppVeyor build failed (Details).

Release Notes for v4.1.6

4.1.6

Bug Fixes

  • postcss-merge-longhand doesn't throw error when merge a border property.
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 monorepo:

    • The devDependency @babel/core was updated from 7.7.2 to 7.7.4.

๐Ÿšจ 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 sinon is breaking the build ๐Ÿšจ

The devDependency sinon was updated from 7.2.3 to 7.2.4.

๐Ÿšจ View failing branch.

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

sinon 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/appveyor/branch: Waiting for AppVeyor build to complete (Details).
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 13 commits.

  • 06fc27d Update docs/changelog.md and set new release id in docs/_config.yml
  • 54da371 Add release documentation for v7.2.4
  • e5de1fe 7.2.4
  • d158672 Update CHANGELOG.md and AUTHORS for new release
  • 1431c78 minor package updates
  • 37c955d Merge pull request #1979 from fatso83/update-npm-deps
  • fc2a32a Merge pull request #1975 from ehmicky/master
  • 85f2fcd Update eslint-plugin-mocha
  • 707e068 Fix high prio audit warnings
  • 8282bc0 Update nise to use @sinonjs/text-encoding
  • c1d9625 Make all properties non-enumerable in spies, stubs, mocks and fakes
  • 894951c Merge pull request #1973 from mgred/default-sandbox-example
  • 876aebb docs(sandbox): add example for default sandbox

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 lodash is breaking the build ๐Ÿšจ

The dependency lodash was updated from 4.17.11 to 4.17.12.

๐Ÿšจ View failing branch.

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

lodash 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).
  • โŒ continuous-integration/appveyor/branch: AppVeyor 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 jasmine-core is breaking the build ๐Ÿšจ

The devDependency jasmine-core was updated from 3.3.0 to 3.4.0.

๐Ÿšจ View failing branch.

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

jasmine-core 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/appveyor/branch: Waiting for AppVeyor build to complete (Details).
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 40 commits.

  • 8fca3b4 Fix links in 3.4 release notes
  • e636f5f Bump version to 3.4
  • 74fd0e0 No fit in the suite
  • 618e24b Handle WebSocket events in IE when detecting Errors
  • 5c7e25e Allow excluded specs in CI without breaking the output
  • 54af109 Merge branch 'wood1986-fix/npm-audit-dependencies-and-fast-glob-only-failed-tests'
  • 873a237 Consolidate some dev dependencies and use more maintained versions
  • 8ca4463 Make node execution default and override for browsers
  • 449eb51 Fix sauce status codes and try travis built-in node support
  • a5df5a6 Use the correct env var from travis for tunnels
  • be58323 bump dependencies for security fixes
  • d389d3c Merge branch 'wood1986-features/no-ruby'
  • 994d11d update node CI script to work with SauceLabs
  • 828d14f Use node.js for browser-based CI
  • f5663a9 Merge branch 'johnjbarton-duration'

There are 40 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 proxyquire is breaking the build ๐Ÿšจ

The devDependency proxyquire was updated from 2.1.0 to 2.1.1.

๐Ÿšจ View failing branch.

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

proxyquire 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/appveyor/branch: Waiting for AppVeyor build to complete (Details).
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 6 commits.

  • 5b88b07 2.1.1
  • 3905975 Update dependencies (#243)
  • 3ca62af funding: adding github funding spec
  • 12606d1 README.md: Fix typo (#241)
  • 3da0603 Add file path reference to readme (#237)
  • cb725be readme: fix simple-get example

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 pify is breaking the build ๐Ÿšจ

The devDependency pify was updated from 4.0.0 to 4.0.1.

๐Ÿšจ View failing branch.

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

pify 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 is in progress (Details).
  • โŒ continuous-integration/appveyor/branch: AppVeyor 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 conventional-changelog-metahub is breaking the build ๐Ÿšจ

The devDependency conventional-changelog-metahub was updated from 2.0.2 to 2.0.3.

๐Ÿšจ View failing branch.

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

conventional-changelog-metahub 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/appveyor/branch: Waiting for AppVeyor build to complete (Details).
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v2.0.3

2.0.3 (2019-10-14)

๐Ÿ› Bug Fixes

  • set shortHash to commit object (7c3b24c)

โ™ป๏ธ Chores

  • package: update ava to version 1.0.1 (0ce98c7)
  • package: update conventional-changelog to version 3.0.1 (06ca95d)
  • package: update emoji-regex to version 7.0.0 (4e1d63d)
  • package: update emoji-regex to version 8.0.0 (37b7ae8)
  • package: update execa to version 0.11.0 (bc6f4d2)
  • package: update execa to version 1.0.0 (a05cb6a)
  • package: update fs-extra to version 7.0.0 (656a460)
  • package: update get-stream to version 4.0.0 (a2bd6b2)
  • package: update nyc (413bc4d)
  • package: update nyc to version 14.0.0 (57ff2a4)
  • package: update xo to version 0.22.0 (9b25fed)
  • package: update xo to version 0.23.0 (87dd6e0)
  • package: update xo to version 0.24.0 (20fdb01)
Commits

The new version differs by 14 commits.

  • 7c3b24c fix: set shortHash to commit object
  • 20fdb01 chore(package): update xo to version 0.24.0
  • 57ff2a4 chore(package): update nyc to version 14.0.0
  • 37b7ae8 chore(package): update emoji-regex to version 8.0.0
  • 0ce98c7 chore(package): update ava to version 1.0.1
  • 413bc4d chore(package): update nyc
  • 06ca95d chore(package): update conventional-changelog to version 3.0.1
  • 87dd6e0 chore(package): update xo to version 0.23.0
  • a05cb6a chore(package): update execa to version 1.0.0
  • bc6f4d2 chore(package): update execa to version 0.11.0
  • a2bd6b2 chore(package): update get-stream to version 4.0.0
  • 9b25fed chore(package): update xo to version 0.22.0
  • 656a460 chore(package): update fs-extra to version 7.0.0
  • 4e1d63d chore(package): update emoji-regex to version 7.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 codecov is breaking the build ๐Ÿšจ

The devDependency codecov was updated from 3.6.4 to 3.6.5.

๐Ÿšจ View failing branch.

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

codecov 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 nyc is breaking the build ๐Ÿšจ

The devDependency nyc was updated from 13.1.0 to 13.2.0.

๐Ÿšจ View failing branch.

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

nyc 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).
  • โŒ continuous-integration/appveyor/branch: AppVeyor build failed (Details).

Commits

The new version differs by 17 commits.

  • 29e6f5e chore(release): 13.2.0
  • e95856c chore: Update dependencies. (#978)
  • 921d386 fix: Create directory for merge destination. (#979)
  • df2730d feat: Option Plugins (#948)
  • 35cd49a feat: document the fact that cacheDir is configurable (#968)
  • ff834aa feat: avoid hardcoded HOME for spawn-wrap working dir (#957)
  • 35710b1 build: move windows tests to travis (#961)
  • 93cb5c1 tests: coverage for temp-dir changes (#964)
  • d566efe test: stop using LAZY_LOAD_COUNT (#960)
  • f23d474 chore: update stale bot config with feedback (#958)
  • 62d7fb8 chore: slight tweak to position of test
  • 28b6d09 fix: missing command temp-directory (#928)
  • 40afc5f fix: nyc processing files not covered by include when all is enabled. (#914)
  • ba22a26 docs(readme): Update to reflect .nycrc.json support (#934)
  • 2dbb82d chore: enable probot-stale

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 sinon is breaking the build ๐Ÿšจ

Version 4.2.1 of sinon was just published.

Branch Build failing ๐Ÿšจ
Dependency sinon
Current Version 4.2.0
Type devDependency

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

sinon 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/appveyor/branch AppVeyor build succeeded Details
  • โŒ continuous-integration/travis-ci/push The Travis CI build could not complete due to an error Details

Commits

The new version differs by 14 commits.

  • a8171c3 Update docs/changelog.md and set new release id in docs/_config.yml
  • 32d6c4a Add release documentation for v4.2.1
  • f3e34f8 4.2.1
  • 158f33e Update History.md and AUTHORS for new release
  • a5c22f2 #1627
  • 2d0509e "throttle" is actually a "debounce" in the example
  • d929b22 Merge pull request #1670 from mroderick/update-footer
  • 225083e Update copyright statement
  • 1237e0d Update footer to use Stack Overflow
  • fdd1948 added another sinon article (#1669)
  • d7075d9 Add .yml extension to .eslintrc
  • c28bca3 Make sure eslint-plugin-ie11 is applied to entire codebase
  • cf3ed84 Move eslint config into it's own file
  • 1503cce Add eslint-plugin-ie11 (#1666)

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 chokidar is breaking the build ๐Ÿšจ

The dependency chokidar was updated from 2.0.4 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.

chokidar 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/appveyor/branch: Waiting for AppVeyor build to complete (Details).
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 32 commits.

There are 32 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 postcss-mixins is breaking the build ๐Ÿšจ

The devDependency postcss-mixins was updated from 6.2.1 to 6.2.2.

๐Ÿšจ View failing branch.

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

postcss-mixins 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/appveyor/branch: Waiting for AppVeyor build to complete (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 semantic-release is breaking the build ๐Ÿšจ

Version 15.9.3 of semantic-release was just published.

Branch Build failing ๐Ÿšจ
Dependency semantic-release
Current Version 15.9.2
Type devDependency

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

semantic-release 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/appveyor/branch: Waiting for AppVeyor build to complete (Details).
  • โŒ continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

Release Notes v15.9.3

15.9.3 (2018-07-31)

Bug Fixes

  • do not hide env variable value if shorter than 5 (b082a2e)
Commits

The new version differs by 1 commits.

  • b082a2e fix: do not hide env variable value if shorter than 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 ava is breaking the build ๐Ÿšจ

The devDependency ava was updated from 1.2.0 to 1.2.1.

๐Ÿšจ View failing branch.

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

ava 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/appveyor/branch: Waiting for AppVeyor build to complete (Details).
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for 1.2.1

This is a bug fix release. In very large projects, the options send to worker processes would exceed limits on process argument size. We're now sending the options via the inter-process communication channel. 3078892

All changes ๐Ÿ“š

v1.2.0...v1.2.1

Get involved โœŒ๏ธ

We welcome new contributors. AVA is a friendly place to get started in open source. We have a great article on getting started contributing and a comprehensive contributing guide.

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 prettier is breaking the build ๐Ÿšจ

Version 1.7.1 of prettier just got published.

Branch Build failing ๐Ÿšจ
Dependency prettier
Current Version 1.7.0
Type devDependency

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

As prettier is โ€œonlyโ€ a devDependency of this project it might not break production or downstream projects, but โ€œonlyโ€ your build or test tools โ€“ preventing new deploys or publishes.

I recommend you give this issue a high priority. Iโ€™m sure you can resolve this ๐Ÿ’ช

Status Details
  • โŒ continuous-integration/travis-ci/push The Travis CI build is in progress Details
  • โŒ continuous-integration/appveyor/branch AppVeyor build failed Details

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot ๐ŸŒด

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

The devDependency codecov was updated from 3.1.0 to 3.2.0.

๐Ÿšจ View failing branch.

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

codecov 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/appveyor/branch: Waiting for AppVeyor build to complete (Details).
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Commits

The new version differs by 3 commits.

  • e427d90 feat(services): add azure pipelines (#114)
  • 023d204 Use small HTTP dependency (#110)
  • 500f308 Update Readme

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 could not complete due to an error (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 sinon is breaking the build ๐Ÿšจ

Version 5.0.8 of sinon was just published.

Branch Build failing ๐Ÿšจ
Dependency sinon
Current Version 5.0.7
Type devDependency

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

sinon 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
  • โœ… continuous-integration/appveyor/branch AppVeyor build succeeded Details

Commits

The new version differs by 12 commits.

  • 3685ee4 Update docs/changelog.md and set new release id in docs/_config.yml
  • 6b5d7fb Add release documentation for v5.0.8
  • 94f9264 5.0.8
  • be117c7 Update History.md and AUTHORS for new release
  • 9c64c8f Merge pull request #1803 from jdalton/is-es-module.js
  • 5983a6d Add isSealed check to is-es-module.
  • e2c7132 Update markdownlint-cli
  • 082f8e8 Update dependencies to appropriate semver-minor versions
  • a321764 Fix sandbox documentation
  • b578cf7 Update insecure dependencies
  • 96b7cad Update issue templates
  • ec00981 Typo'd fake to fakes

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 ava is breaking the build ๐Ÿšจ

The devDependency ava was updated from 3.2.0 to 3.3.0.

๐Ÿšจ View failing branch.

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

ava 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 3.3.0

AVA can now load ESM test files! ๐ŸŽ‰Thank you @arlac77 for making this happen. Check our updated ES Modules recipe for details.

Our ESM support is still incomplete. Progress is tracked in the ESM support project. Join us, won't you?

Other changes

See v3.2.0...v3.3.0 for all changes.

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 semantic-release is breaking the build ๐Ÿšจ

Version 12.2.5 of semantic-release was just published.

Branch Build failing ๐Ÿšจ
Dependency semantic-release
Current Version 12.2.4
Type devDependency

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

semantic-release 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/appveyor/branch AppVeyor build succeeded Details
  • โŒ continuous-integration/travis-ci/push The Travis CI build could not complete due to an error Details

Commits

The new version differs by 3 commits.

  • 0d2d1f2 fix: fix the --no-ci arg parsing
  • 7e860c7 docs(travis): recommend to use the deploy step instead of script
  • e0fa20b ci(travis): use Build Stages

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 @metahub/karma-jasmine-jquery is breaking the build ๐Ÿšจ

Version 1.1.2 of @metahub/karma-jasmine-jquery was just published.

Branch Build failing ๐Ÿšจ
Dependency @metahub/karma-jasmine-jquery
Current Version 1.1.1
Type devDependency

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

@metahub/karma-jasmine-jquery 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/appveyor/branch Waiting for AppVeyor build to complete Details
  • โŒ continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes v1.1.2

1.1.2 (2018-01-04)

๐Ÿ“š Documentation

โš™๏ธ Continuous Integrations

  • retry on npm install (3558e86)
  • appveyor: Pin npm 5.3 (b6b5995)
  • nyc: Enforce 100% code coverage (b745bd6)

โ™ป๏ธ Chores

  • eslint: Use eslint-config-pretty (aa7088c)
  • package: update @commitlint/config-angular to version 5.1.1 (bbd93c1)
  • package: update ava to version 0.24.0 (337f137)
  • package: update dependencies (232d933)
  • package: update eslint-config-pretty to version 2.1.1 (59ad9a5)
  • package: update karma-babel-preprocessor to version 7.0.0 (5ae707e)
  • package: update rollup to version 0.49.1 (093b5ef), closes #11
  • package: update rollup to version 0.50.0 (c2d6499)
  • package: update rollup to version 0.52.0 (f0583c0)
  • package: update rollup to version 0.53.0 (697053b)
  • put babel conf in package.json (6ef090c)
  • remove commitizen (8a8d90d)
  • remove commitlint (d0e7213)
  • remove commitlint (56cd132)
  • Remove git hooks (b7c8479)
  • update karma to the latest version (2a4931a)
  • update semantic-release (7d4ea9b)
  • use Codecov to check for coverage (8798425)
  • use XO instead of custom eslint (940336c)

๐Ÿ’Ž Styles

Commits

The new version differs by 25 commits.

  • 2a4931a chore: update karma to the latest version
  • efadcfd docs(readme): update repo URL
  • 59bc419 docs(readme): Update badges
  • 6ef090c chore: put babel conf in package.json
  • 940336c chore: use XO instead of custom eslint
  • 8798425 chore: use Codecov to check for coverage
  • 7d4ea9b chore: update semantic-release
  • 8a8d90d chore: remove commitizen
  • 56cd132 chore: remove commitlint
  • d0e7213 chore: remove commitlint
  • b7c8479 chore: Remove git hooks
  • 697053b chore(package): update rollup to version 0.53.0
  • bbd93c1 chore(package): update @commitlint/config-angular to version 5.1.1
  • f0583c0 chore(package): update rollup to version 0.52.0
  • 337f137 chore(package): update ava to version 0.24.0

There are 25 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 cssnano is breaking the build ๐Ÿšจ

The devDependency cssnano was updated from 4.1.8 to 4.1.9.

๐Ÿšจ View failing branch.

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

cssnano 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/appveyor/branch: Waiting for AppVeyor build to complete (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 cssnano is breaking the build ๐Ÿšจ

The devDependency cssnano was updated from 4.1.1 to 4.1.2.

๐Ÿšจ View failing branch.

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

cssnano 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).
  • โœ… continuous-integration/appveyor/branch: AppVeyor build succeeded (Details).

Release Notes for v4.1.2

4.1.2 - 2018-09-25

  • postcss-svgo now handle DataURI with uppercase data value (DATA:image/*;...)
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 sinon is breaking the build ๐Ÿšจ

Version 4.1.6 of sinon was just published.

Branch Build failing ๐Ÿšจ
Dependency sinon
Current Version 4.1.5
Type devDependency

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

sinon 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/appveyor/branch AppVeyor build succeeded Details
  • โŒ continuous-integration/travis-ci/push The Travis CI build could not complete due to an error Details

Commits

The new version differs by 10 commits.

  • 68c37ed Update docs/changelog.md and set new release id in docs/_config.yml
  • cd8ae51 Add release documentation for v4.1.6
  • 29e80be 4.1.6
  • a5c59a5 Update History.md and AUTHORS for new release
  • 0ae60b6 Merge pull request #1653 from mroderick/upgrade-dependencies
  • dcd4191 Upgrade browserify to latest
  • a316f02 Upgrade markdownlint-cli to latest
  • 78ebdb3 Upgrade lint-staged to latest
  • fcf967b Upgrade dependency supports-color
  • 7c3cb4f Enable StaleBot with default configuration (#1649)

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 monorepo:

    • The devDependency @babel/core was updated from 7.7.7 to 7.8.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 jasmine-core is breaking the build ๐Ÿšจ

Version 2.9.1 of jasmine-core was just published.

Branch Build failing ๐Ÿšจ
Dependency jasmine-core
Current Version 2.9.0
Type devDependency

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

jasmine-core 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/appveyor/branch AppVeyor build succeeded Details
  • โŒ continuous-integration/travis-ci/push The Travis CI build failed Details

Release Notes 2.9.1

Please see the release notes

Commits

The new version differs by 2 commits.

  • 70bce55 Bump version to 2.9.1
  • 53529bd Clear timeouts when starting to process a milli instead of at the end

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 semantic-release is breaking the build ๐Ÿšจ

Version 15.9.13 of semantic-release was just published.

Branch Build failing ๐Ÿšจ
Dependency semantic-release
Current Version 15.9.12
Type devDependency

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

semantic-release 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).
  • โœ… continuous-integration/appveyor/branch: AppVeyor build succeeded (Details).

Release Notes v15.9.13

15.9.13 (2018-09-07)

Bug Fixes

  • support multiple generate-notes plugin in CLI arg (4f75cb3)
Commits

The new version differs by 6 commits.

  • 4f75cb3 fix: support multiple generate-notes plugin in CLI arg
  • 1348985 docs: analyzeCommits does not accept an Array
  • dfbb9f2 docs: clarify the URL encoding of GIT_CREDENTIALS
  • fa62d42 chore(package): update xo to version 0.23.0
  • 42e9d11 chore(package): update delay to version 4.0.0
  • 468f8a8 docs: clarify the --ci / --no-ci CLI option

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 ๐Ÿšจ

The devDependency karma was updated from 3.1.1 to 3.1.2.

๐Ÿšจ 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/appveyor/branch: Waiting for AppVeyor build to complete (Details).
  • โŒ continuous-integration/travis-ci/push: The Travis CI build failed (Details).

Release Notes for v3.1.2

Bug Fixes

Features

Commits

The new version differs by 11 commits.

  • 7d4d347 chore: release v3.1.2
  • 5077c18 chore: update contributors
  • fb05fb1 fix(server): use flatted for json.stringify (#3220)
  • 2682bff feat(docs): callout the key debug strategies. (#3219)
  • 4e87902 fix(changelog): remove release which does not exist (#3214)
  • 30ff73b fix(browser): report errors to console during singleRun=false (#3209)
  • 5334d1a fix(file-list): do not preprocess up-to-date files (#3196)
  • dc5f5de fix(deps): upgrade sinon-chai 2.x -> 3.x (#3207)
  • d38f344 fix(package): bump lodash version (#3203)
  • ffb41f9 refactor(browser): log state transitions in debug (#3202)
  • 240209f fix(dep): Bump useragent to fix HeadlessChrome version (#3201)

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 is breaking the build ๐Ÿšจ

Version 4.6.0 of eslint just got published.

Branch Build failing ๐Ÿšจ
Dependency eslint
Current Version 4.5.0
Type devDependency

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

As eslint is โ€œonlyโ€ a devDependency of this project it might not break production or downstream projects, but โ€œonlyโ€ your build or test tools โ€“ preventing new deploys or publishes.

I recommend you give this issue a high priority. Iโ€™m sure you can resolve this ๐Ÿ’ช

Status Details
  • โŒ continuous-integration/travis-ci/push The Travis CI build is in progress Details
  • โŒ continuous-integration/appveyor/branch AppVeyor build failed Details

Release Notes v4.6.0
  • 56dd769 Docs: fix link format in prefer-arrow-callback.md (#9198) (Vse Mozhet Byt)
  • 6becf91 Update: add eslint version to error output. (fixes #9037) (#9071) (่–›ๅฎš่ฐ”็š„็Œซ)
  • 0e09973 New: function-paren-newline rule (fixes #6074) (#8102) (Teddy Katz)
  • 88a64cc Chore: Make parseJsonConfig() a pure function in Linter (#9186) (Teddy Katz)
  • 1bbac51 Fix: avoid breaking eslint-plugin-eslint-comments (fixes #9193) (#9196) (Teddy Katz)
  • 3e8b70a Fix: off-by-one error in eslint-disable comment checking (#9195) (Teddy Katz)
  • 73815f6 Docs: rewrite prefer-arrow-callback documentation (fixes #8950) (#9077) (Charles E. Morgan)
  • 0d3a854 Chore: avoid mutating report descriptors in report-translator (#9189) (Teddy Katz)
  • 2db356b Update: no-unused-vars Improve message to include the allowed patterns (#9176) (Eli White)
  • 8fbaf0a Update: Add configurability to generator-star-spacing (#8985) (Ethan Rutherford)
  • 8ed779c Chore: remove currentScopes property from Linter instances (refs #9161) (#9187) (Teddy Katz)
  • af4ad60 Fix: Handle error when running init without npm (#9169) (Gabriel Aumala)
  • 4b94c6c Chore: make parse() a pure function in Linter (refs #9161) (#9183) (Teddy Katz)
  • 1be5634 Chore: don't make Linter a subclass of EventEmitter (refs #9161) (#9177) (Teddy Katz)
  • e95af9b Chore: don't include internal test helpers in npm package (#9160) (Teddy Katz)
  • 6fb32e1 Chore: avoid using private Linter APIs in astUtils tests (refs #9161) (#9173) (Teddy Katz)
  • de6dccd Docs: add documentation for Linter methods (refs #6525) (#9151) (Teddy Katz)
  • 2d90030 Chore: remove unused assignment. (#9182) (่–›ๅฎš่ฐ”็š„็Œซ)
  • d672aef Chore: refactor reporting logic (refs #9161) (#9168) (Teddy Katz)
  • 5ab0434 Fix: indent crash on sparse arrays with "off" option (fixes #9157) (#9166) (Teddy Katz)
  • c147b97 Chore: Make SourceCodeFixer accept text instead of a SourceCode instance (#9178) (Teddy Katz)
  • f127423 Chore: avoid using private Linter APIs in Linter tests (refs #9161) (#9175) (Teddy Katz)
  • 2334335 Chore: avoid using private Linter APIs in SourceCode tests (refs #9161) (#9174) (Teddy Katz)
  • 2dc243a Chore: avoid using internal Linter APIs in RuleTester (refs #9161) (#9172) (Teddy Katz)
  • d6e436f Fix: no-extra-parens reported some parenthesized IIFEs (fixes #9140) (#9158) (Teddy Katz)
  • e6b115c Build: Add an edit link to the rule docsโ€™ metadata (#9049) (Jed Fox)
  • fcb7bb4 Chore: avoid unnecessarily complex forEach calls in no-extra-parens (#9159) (Teddy Katz)
  • ffa021e Docs: quotes rule - when does \n require backticks (#9135) (avimar)
  • 60c5148 Chore: improve coverage in lib/*.js (#9130) (Teddy Katz)
Commits

The new version differs by 31 commits.

  • 8f01a99 4.6.0
  • c0acbf2 Build: changelog update for 4.6.0
  • 56dd769 Docs: fix link format in prefer-arrow-callback.md (#9198)
  • 6becf91 Update: add eslint version to error output. (fixes #9037) (#9071)
  • 0e09973 New: function-paren-newline rule (fixes #6074) (#8102)
  • 88a64cc Chore: Make parseJsonConfig() a pure function in Linter (#9186)
  • 1bbac51 Fix: avoid breaking eslint-plugin-eslint-comments (fixes #9193) (#9196)
  • 3e8b70a Fix: off-by-one error in eslint-disable comment checking (#9195)
  • 73815f6 Docs: rewrite prefer-arrow-callback documentation (fixes #8950) (#9077)
  • 0d3a854 Chore: avoid mutating report descriptors in report-translator (#9189)
  • 2db356b Update: no-unused-vars Improve message to include the allowed patterns (#9176)
  • 8fbaf0a Update: Add configurability to generator-star-spacing (#8985)
  • 8ed779c Chore: remove currentScopes property from Linter instances (refs #9161) (#9187)
  • af4ad60 Fix: Handle error when running init without npm (#9169)
  • 4b94c6c Chore: make parse() a pure function in Linter (refs #9161) (#9183)

There are 31 commits in total.

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot ๐ŸŒด

An in-range update of ava 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 ava was updated from 3.5.0 to 3.5.1.

๐Ÿšจ View failing branch.

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

ava 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).

Commits

The new version differs by 4 commits.

  • 5d79170 3.5.1
  • 2c8b75d Tweak test timeouts to reduce flakiness
  • 52bbd5b Allow tests to force AVA to behave like in CI or not
  • 3195eb8 Simplify Codecov setup

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 postcss-scss is breaking the build ๐Ÿšจ

Version 1.0.3 of postcss-scss was just published.

Branch Build failing ๐Ÿšจ
Dependency postcss-scss
Current Version 1.0.2
Type devDependency

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

postcss-scss 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/appveyor/branch AppVeyor build succeeded 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 postcss is breaking the build ๐Ÿšจ

The devDependency postcss was updated from 7.0.19 to 7.0.20.

๐Ÿšจ View failing branch.

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

postcss 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 7.0.20
  • Allow to pass PostCSSโ€™s nodes in nodes property to node constructor.
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 postcss-simple-vars is breaking the build ๐Ÿšจ

The devDependency postcss-simple-vars was updated from 5.0.1 to 5.0.2.

๐Ÿšจ View failing branch.

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

postcss-simple-vars 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/appveyor/branch: Waiting for AppVeyor build to complete (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 eslint-config-pretty is breaking the build ๐Ÿšจ

Version 2.1.0 of eslint-config-pretty just got published.

Branch Build failing ๐Ÿšจ
Dependency eslint-config-pretty
Current Version 2.0.2
Type devDependency

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

As eslint-config-pretty is โ€œonlyโ€ a devDependency of this project it might not break production or downstream projects, but โ€œonlyโ€ your build or test tools โ€“ preventing new deploys or publishes.

I recommend you give this issue a high priority. Iโ€™m sure you can resolve this ๐Ÿ’ช

Status Details
  • โŒ continuous-integration/travis-ci/push The Travis CI build is in progress Details
  • โŒ continuous-integration/appveyor/branch AppVeyor build failed Details

Release Notes v2.1.0

2.1.0 (2017-09-02)

โœจ Features

  • base: Add function-paren-newline rule (a105db7), closes #25

๐Ÿšจ Tests

  • Use nyc configuration from package.json (cd8e074)

โš™๏ธ Continuous Integrations

  • travis: Retry npm install if it fails (28da4ad)

โ™ป๏ธ Chores

  • package: update eslint to version 4.6.0 (7131c2f)
Commits

The new version differs by 4 commits.

  • a105db7 feat(base): Add function-paren-newline rule
  • 7131c2f chore(package): update eslint to version 4.6.0
  • 28da4ad ci(travis): Retry npm install if it fails
  • cd8e074 test: Use nyc configuration from package.json

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot ๐ŸŒด

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

Version 6.0.17 of postcss was just published.

Branch Build failing ๐Ÿšจ
Dependency postcss
Current Version 6.0.16
Type devDependency

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

postcss 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/appveyor/branch Waiting for AppVeyor build to complete 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 ๐ŸŒด

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.