Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Update dependencies: code formatter packages #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Nov 24, 2019

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
husky 3.0.5 -> 3.1.0 age adoption passing confidence
lint-staged 9.2.5 -> 9.5.0 age adoption passing confidence
mustache 3.1.0 -> 3.2.1 age adoption passing confidence
prettier (source) 1.18.2 -> 1.19.1 age adoption passing confidence
prettier-package-json 2.1.0 -> 2.8.0 age adoption passing confidence
sort-package-json 1.22.1 -> 1.57.0 age adoption passing confidence

Release Notes

typicode/husky (husky)

v3.1.0

Compare Source

  • Add pre-merge-commit hook (#​605)

v3.0.9

Compare Source

  • Reduce dependencies: replace is-ci with ci-info #​579

v3.0.8

Compare Source

  • Fix: git worktree support #​580
  • Debug: check GIT_DIR environment variable when hooks are run

v3.0.7

Compare Source

Debug: display husky version and created at

v3.0.6

Compare Source

Debug: improve messages

okonet/lint-staged (lint-staged)

v9.5.0

Compare Source

Features
  • add support for concurrent CLI option (6af8307)

v9.4.3

Compare Source

Bug Fixes
  • deps: bump eslint-utils from 1.4.0 to 1.4.3 to fix a security vulnerability (#​722) (ed84d8e)

v9.4.2

Compare Source

Bug Fixes
  • create fn title with mock file list of correct length (8c3ca58)

v9.4.1

Compare Source

Bug Fixes

v9.4.0

Compare Source

Features

v9.3.0

Compare Source

Features
  • allow to pass config instead of configPath (14c46d2)
janl/mustache.js (mustache)

v3.2.1

Compare Source

Fixed
  • [#​733]: Allow the CLI to use JavaScript views when the project has ES6 modules enabled, by [@​eobrain].

v3.2.0

Compare Source

Added
Using mustache.js as an ES module

To stay backwards compatible with already using projects, the default exposed module format is still UMD.
That means projects using mustache.js as an CommonJS, AMD or global scope module, from npm or directly from github.com
can keep on doing that for now.

For those projects who would rather want to use mustache.js as an ES module, the mustache/mustache.mjs file has to
be imported directly.

Below are some usage scenarios for different runtimes.

Modern browser with ES module support
<!-- index.html -->
<script type="module">
  import mustache from "https://unpkg.com/mustache@3.2.0/mustache.mjs"

  console.log(mustache.render('Hello {{name}}!', { name: 'Santa' }))
  // Hello Santa!
</script>
Node.js (>= v13.2.0 or using --experimental-modules flag)
// index.mjs
import mustache from 'mustache/mustache.mjs'

console.log(mustache.render('Hello {{name}}!', { name: 'Santa' }))
// Hello Santa!

ES Module support for Node.js will be improved in the future when Conditional Exports
is enabled by default rather than being behind an experimental flag.

More info in Node.js ECMAScript Modules docs.

Deno
// index.ts
import mustache from 'https://unpkg.com/mustache@3.2.0/mustache.mjs'

console.log(mustache.render('Hello {{name}}!', { name: 'Santa' }))
// Hello Santa!
prettier/prettier (prettier)

v1.19.1

Compare Source

diff

CLI
Fix --stdin regression in 1.19.0 (#​6894 by @​lydell)
// Prettier stable
$ echo "test" | prettier --stdin --parser babel
[error] regeneratorRuntime is not defined

// Prettier master
$ echo "test" | prettier --stdin --parser babel
test;
TypeScript
Fix formatting of union type as arrow function return type (#​6896 by @​thorn0)
// Input
export const getVehicleDescriptor = async (
  vehicleId: string,
): Promise<Collections.Parts.PrintedCircuitBoardAssembly['attributes'] | undefined> => {}

// Prettier stable
export const getVehicleDescriptor = async (
  vehicleId: string
): Promise<| Collections.Parts.PrintedCircuitBoardAssembly["attributes"]
| undefined> => {};

// Prettier master
export const getVehicleDescriptor = async (
  vehicleId: string
): Promise<
  Collections.Parts.PrintedCircuitBoardAssembly["attributes"] | undefined
> => {};

v1.19.0

Compare Source

diff

🔗 Release Notes

cameronhunter/prettier-package-json (prettier-package-json)

v2.6.3

Compare Source

v2.6.2

Compare Source

v2.6.1

Compare Source

v2.6.0

Compare Source

v2.5.0

Compare Source

v2.4.0

Compare Source

v2.3.0

Compare Source

v2.1.3

Compare Source

v2.1.2

Compare Source

keithamus/sort-package-json (sort-package-json)

v1.57.0

Compare Source

Features

v1.56.1

Compare Source

Bug Fixes

v1.56.0

Compare Source

Features

v1.55.0

Compare Source

Features

v1.54.0

Compare Source

Features

v1.53.1

Compare Source

Bug Fixes

v1.53.0

Compare Source

Features

v1.52.0

Compare Source

Features
  • sort all scripts unless npm-run-all is a dependency (#​232) (675ed2f)

v1.51.0

Compare Source

Features

v1.50.0

Compare Source

Features

v1.49.0

Compare Source

Features

v1.48.1

Compare Source

Bug Fixes

v1.48.0

Compare Source

Features

v1.47.0

Compare Source

Features

v1.46.1

Compare Source

Bug Fixes

v1.46.0

Compare Source

Features

v1.45.0

Compare Source

Features

v1.44.0

Compare Source

Features

v1.43.0

Compare Source

Features

v1.42.3

Compare Source

Bug Fixes

v1.42.2

Compare Source

Bug Fixes

v1.42.1

Compare Source

Bug Fixes

v1.42.0

Compare Source

Features

v1.41.0

Compare Source

Features

v1.40.0

Compare Source

Features

v1.39.1

Compare Source

Bug Fixes

v1.39.0

Compare Source

Features

v1.38.3

Compare Source

Bug Fixes

v1.38.2

Compare Source

Bug Fixes

v1.38.1

Compare Source

Bug Fixes

v1.38.0

Compare Source

Features

v1.37.1

Compare Source

Bug Fixes

v1.37.0

Compare Source

Features

v1.36.0

Compare Source

Features

v1.35.1

Compare Source

Bug Fixes

v1.35.0

Compare Source

Features

v1.34.0

Compare Source

Features

v1.33.0

Compare Source

Features

v1.32.3

Compare Source

Bug Fixes

v1.32.2

Compare Source

Bug Fixes

v1.32.1

Compare Source

Bug Fixes

v1.32.0

Compare Source

Features

v1.31.0

Compare Source

Features

v1.30.0

Compare Source

Features

v1.29.0

Compare Source

Features

v1.28.0

Compare Source

Features

v1.27.0

Compare Source

Features

v1.26.0

Compare Source

Features

v1.25.0

Compare Source

Features

v1.24.0

Compare Source

Features
  • add 'type' field to list (1c51598)

v1.23.1

Compare Source

Bug Fixes
  • package: update detect-indent to version 6.0.0 (daab31d)

v1.23.0

Compare Source

Features

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from de9ec15 to cedde33 Compare November 25, 2019 09:32
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Nov 25, 2019
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from cedde33 to 5a42f8b Compare November 27, 2019 05:25
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Nov 27, 2019
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 5a42f8b to 91331f4 Compare November 29, 2019 10:11
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Nov 29, 2019
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 91331f4 to ad1e1b3 Compare November 29, 2019 10:13
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Nov 29, 2019
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from ad1e1b3 to 609c07c Compare December 2, 2019 17:25
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Dec 2, 2019
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 609c07c to 2ea6ba1 Compare December 3, 2019 10:17
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Dec 3, 2019
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 2ea6ba1 to 98be904 Compare December 3, 2019 10:20
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Dec 3, 2019
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 98be904 to ae026d3 Compare December 8, 2019 04:22
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Dec 8, 2019
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Dec 8, 2019
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from ae026d3 to 55a5344 Compare December 10, 2019 22:44
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Dec 10, 2019
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Dec 11, 2019
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 55a5344 to cd0b17d Compare December 18, 2019 21:01
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Dec 18, 2019
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Dec 27, 2019
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Dec 27, 2019
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Dec 27, 2019
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Dec 27, 2019
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Dec 27, 2019
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Dec 27, 2019
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from cd0b17d to 20d36a2 Compare December 28, 2019 12:15
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Dec 28, 2019
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from e274f38 to 2785ac3 Compare February 8, 2020 18:00
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Feb 8, 2020
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 2785ac3 to b7a4201 Compare March 15, 2020 06:58
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Mar 15, 2020
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from b7a4201 to 55e6b9f Compare April 28, 2020 04:58
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Apr 28, 2020
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 55e6b9f to 8cd819f Compare May 8, 2020 09:53
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages May 8, 2020
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 8cd819f to cf0f637 Compare July 2, 2020 02:50
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Jul 2, 2020
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Aug 23, 2020
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from cf0f637 to d87680e Compare October 26, 2020 06:57
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Oct 26, 2020
Copy link

@codeclimate codeclimate bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR diff size of 8216 lines exceeds the maximum allowed for the inline comments feature.

@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from d87680e to 906312f Compare November 25, 2020 04:57
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Nov 25, 2020
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 906312f to dc02715 Compare January 5, 2021 21:56
@renovate renovate bot changed the title ⬆️ Update dependencies: code formatter packages ⬆️ Update dependencies: code formatter packages Jan 5, 2021
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from dc02715 to 5ff6dec Compare April 26, 2021 14:37
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 5ff6dec to 8f08079 Compare May 9, 2021 22:49
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 8f08079 to 0afdae8 Compare June 6, 2021 23:10
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 0afdae8 to 125b43b Compare October 20, 2021 06:17
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 125b43b to 17907a8 Compare March 7, 2022 15:39
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 17907a8 to 94f7da5 Compare March 26, 2022 14:08
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 94f7da5 to c21311a Compare May 16, 2022 00:46
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from c21311a to f9a316e Compare June 23, 2022 18:46
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from f9a316e to 556ac67 Compare September 25, 2022 18:18
@renovate renovate bot force-pushed the renovate/code-formatter-packages branch from 556ac67 to 8cba3c3 Compare March 16, 2023 17:59
@codeclimate
Copy link

codeclimate bot commented Mar 16, 2023

Code Climate has analyzed commit 8cba3c3 and detected 0 issues on this pull request.

View more on Code Climate.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants