Giter Club home page Giter Club logo

chastifol's People

Contributors

greenkeeper[bot] avatar greenkeeperio-bot avatar seangenabe avatar

Stargazers

 avatar

Watchers

 avatar

chastifol's Issues

Remove buffer limit

child_process.exec imposes a limit on the size of the buffer specified by maxBuffer. Changing the default value doesn't really help--node will still buffer it.

We may need to switch to child_process.spawn or execFile (?) for this one.

Version 10 of node.js has been released

Version 10 of Node.js (code name Dubnium) has been released! 🎊

To see what happens to your code in Node.js 10, Greenkeeper has created a branch with the following changes:

  • Added the new Node.js version to your .travis.yml
  • The new Node.js version is in-range for the engines in 1 of your package.json files, so that was left alone

If you’re interested in upgrading this repo to Node.js 10, you can open a PR with these changes. Please note that this issue is just intended as a friendly reminder and the PR as a possible starting point for getting your code running on Node.js 10.

More information on this issue

Greenkeeper has checked the engines key in any package.json file, the .nvmrc file, and the .travis.yml file, if present.

  • engines was only updated if it defined a single version, not a range.
  • .nvmrc was updated to Node.js 10
  • .travis.yml was only changed if there was a root-level node_js that didn’t already include Node.js 10, such as node or lts/*. In this case, the new version was appended to the list. We didn’t touch job or matrix configurations because these tend to be quite specific and complex, and it’s difficult to infer what the intentions were.

For many simpler .travis.yml configurations, this PR should suffice as-is, but depending on what you’re doing it may require additional work or may not be applicable at all. We’re also aware that you may have good reasons to not update to Node.js 10, which is why this was sent as an issue and not a pull request. Feel free to delete it without comment, I’m a humble robot and won’t feel rejected 🤖


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 🌴

Diving into Linux-land modules

I made a "submodule" that's just bundled with this one: escape, which is supposed to be shell-escape, but shell-escape doesn't work well with Windows.

Of course, I wouldn't know too if my module works in Linux machines, though assuming the Travis CI icon I'm seeing is correct, it does.

Opening this issue so I won't forget if the time comes that it plays well with Windows. Or should I just publish escape as a separate npm module?

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

Version 2.4.0 of debug just got published.

Branch Build failing 🚨
Dependency debug
Current Version 2.3.3
Type dependency

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

As debug is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this 💪


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 7 commits .

  • b82d4e6 release 2.4.0
  • 41002f1 Update bower.json (#342)
  • e58d54b Node: configurable util.inspect() options (#327)
  • 00f3046 Node: %O (big O) pretty-prints the object (#322)
  • bd9faa1 allow colours in workers (#335)
  • 501521f Use same color for same namespace. (#338)
  • e2a1955 Revert "handle regex special characters"

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 🌴

Hierarchical double dashes `--` needed twice?

When doing something like chastifol [ npm run compile -- --watch ] the command doesn't quite run. What works is chastifol [ npm run compile -- -- --watch ].

Why is that? Can we avoid that?

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

Version 3.12.0 of eslint just got published.

Branch Build failing 🚨
Dependency eslint
Current Version 3.11.1
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 passed Details

  • continuous-integration/appveyor/branch AppVeyor build failed Details

Release Notes v3.12.0
  • e569225 Update: fix false positive/negative of yoda rule (fixes #7676) (#7695) (Toru Nagashima)
  • e95a230 Fix: indent "first" option false positive on nested arrays (fixes #7727) (#7728) (Teddy Katz)
  • 81f9e7d Fix: Allow duplicated let declarations in prefer-const (fixes #7712) (#7717) (Teddy Katz)
  • 1d0d61d New: Add no-await-in-loop rule (#7563) (Nat Mote)
  • 2cdfb4e New: Additional APIs (fixes #6256) (#7669) (Ilya Volodin)
  • 4278c42 Update: make no-obj-calls report errors for Reflect (fixes #7700) (#7710) (Tomas Echeverri Valencia)
  • 4742d82 Docs: clarify the default behavior of operator-linebreak (fixes #7459) (#7726) (Teddy Katz)
  • a8489e2 Chore: Avoid parserOptions boilerplate in tests for ES6 rules (#7724) (Teddy Katz)
  • b921d1f Update: add indent options for array and object literals (fixes #7473) (#7681) (Teddy Katz)
  • 7079c89 Update: Add airbnb-base to init styleguides (fixes #6986) (#7699) (alberto)
  • 63bb3f8 Docs: improve the documentation for the autofix API (#7716) (Teddy Katz)
  • f8786fb Update: add fixer for capitalized-comments (#7701) (Teddy Katz)
  • abfd24f Fix: don't validate schemas for disabled rules (fixes #7690) (#7692) (Teddy Katz)
  • 2ac07d8 Upgrade: Update globals dependency to 9.14.0 (#7683) (Aleksandr Oleynikov)
  • 90a5d29 Docs: Remove incorrect info about issue requirements from PR guide (#7691) (Teddy Katz)
  • f80c278 Docs: Add sails-hook-lint to integrations list (#7679) (Anthony M)
  • e96da3f Docs: link first instance of package.json (#7684) (Kent C. Dodds)
  • bf20e20 Build: include links to rule pages in release blogpost (#7671) (Teddy Katz)
  • b30116c Docs: Fix code-blocks in spaced-comment docs (#7524) (Michał Gołębiowski)
  • 0a2a7fd Fix: Allow \u2028 and \u2029 as string escapes in no-useless-escape (#7672) (Teddy Katz)
  • 76c33a9 Docs: Change Sails.js integration to active npm package (#7675) (Anthony M)
Commits

The new version differs by 23 commits .

  • da79f17 3.12.0
  • 519e790 Build: package.json and changelog update for 3.12.0
  • e569225 Update: fix false positive/negative of yoda rule (fixes #7676) (#7695)
  • e95a230 Fix: indent "first" option false positive on nested arrays (fixes #7727) (#7728)
  • 81f9e7d Fix: Allow duplicated let declarations in prefer-const (fixes #7712) (#7717)
  • 1d0d61d New: Add no-await-in-loop rule (#7563)
  • 2cdfb4e New: Additional APIs (fixes #6256) (#7669)
  • 4278c42 Update: make no-obj-calls report errors for Reflect (fixes #7700) (#7710)
  • 4742d82 Docs: clarify the default behavior of operator-linebreak (fixes #7459) (#7726)
  • a8489e2 Chore: Avoid parserOptions boilerplate in tests for ES6 rules (#7724)
  • b921d1f Update: add indent options for array and object literals (fixes #7473) (#7681)
  • 7079c89 Update: Add airbnb-base to init styleguides (fixes #6986) (#7699)
  • 63bb3f8 Docs: improve the documentation for the autofix API (#7716)
  • f8786fb Update: add fixer for capitalized-comments (#7701)
  • abfd24f Fix: don't validate schemas for disabled rules (fixes #7690) (#7692)

There are 23 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 concat-stream is breaking the build 🚨

Version 1.6.0 of concat-stream just got published.

Branch Build failing 🚨
Dependency concat-stream
Current Version 1.5.2
Type devDependency

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

As concat-stream 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 3 commits .

  • e482281 1.6.0
  • 8835a01 switch the semver range of dependencies from ~ to ^ (#46)
  • 023312b Fix 'stream-each' typo in README. (#53)

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 🌴

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.