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 npm devDependencies #7

Closed
wants to merge 9 commits into from
Closed

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 27, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@secretlint/secretlint-rule-preset-recommend (source) 8.1.0 -> 8.1.1 age adoption passing confidence
@tksst/eslint-config 12.0.0 -> 12.1.0 age adoption passing confidence
lint-staged 15.2.0 -> 15.2.2 age adoption passing confidence
npm-run-all2 6.1.1 -> 6.1.2 age adoption passing confidence
prettier (source) 3.2.4 -> 3.2.5 age adoption passing confidence
secretlint (source) 8.1.0 -> 8.1.1 age adoption passing confidence

Release Notes

secretlint/secretlint (@​secretlint/secretlint-rule-preset-recommend)

v8.1.1

Compare Source

What's Changed
Bug Fixes
Documentation
Dependency Updates
Other Changes
New Contributors

Full Changelog: secretlint/secretlint@v8.1.0...v8.1.1

tksst/eslint-config (@​tksst/eslint-config)

v12.1.0

Compare Source

Minor Changes
  • 791397e: disable no-return-await for JavaScript files and set @​typescript-eslint/return-await from error/in-try-catch to warn/always that means you should always use return-await for TypeScript.
    return-await is preferable because:

    • better call stack in some engines such as V8
    • proper handling with try-catch statement
Patch Changes
okonet/lint-staged (lint-staged)

v15.2.2

Compare Source

Patch Changes
  • #​1391 fdcdad4 Thanks @​iiroj! - Lint-staged no longer tries to load configuration from files that are not checked out. This might happen when using sparse-checkout.

v15.2.1

Compare Source

Patch Changes
  • #​1387 e4023f6 Thanks @​iiroj! - Ignore stdin of spawned commands so that they don't get stuck waiting. Until now, lint-staged has used the default settings to spawn linter commands. This means the stdin of the spawned commands has accepted input, and essentially gotten stuck waiting. Now the stdin is ignored and commands will no longer get stuck. If you relied on this behavior, please open a new issue and describe how; the behavior has not been intended.
bcomnes/npm-run-all2 (npm-run-all2)

v6.1.2

Compare Source

Merged
  • feat: move to read-package-json-fast #130
  • Upgrade: Bump c8 from 8.0.1 to 9.0.0 #127
  • Upgrade: Bump github/codeql-action from 2 to 3 #126
  • Upgrade: Bump actions/setup-node from 3 to 4 #123
Commits
  • Publish the whole project 3dde20c
  • Utilize CJS require for 'read-package-json-fast' 605ca15
  • Update FUNDING.yml c838ee9
prettier/prettier (prettier)

v3.2.5

Compare Source

diff

Support Angular inline styles as single template literal (#​15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@​Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.5
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `
    h1 {
      color: blue;
    }
  `,
})
export class AppComponent {}
Unexpected embedded formatting for Angular template (#​15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.4
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.5
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}
Use "json" parser for tsconfig.json by default (#​16012 by @​sosukesuzuki)

In v2.3.0, we introduced "jsonc" parser which adds trialing comma by default.

When adding a new parser we also define how it will be used based on the linguist-languages data.

tsconfig.json is a special file used by TypeScript, it uses .json file extension, but it actually uses the JSON with Comments syntax. However, we found that there are many third-party tools not recognize it correctly because of the confusing .json file extension.

We decide to treat it as a JSON file for now to avoid the extra configuration step.

To keep using the "jsonc" parser for your tsconfig.json files, add the following to your .pretterrc file

{
  "overrides": [
    {
      "files": ["tsconfig.json", "jsconfig.json"],
      "options": {
        "parser": "jsonc"
      }
    }
  ]
}

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 changed the title Update npm devDependencies Update npm devDependencies - autoclosed Jan 28, 2024
@renovate renovate bot closed this Jan 28, 2024
@renovate renovate bot deleted the renovate/npm-devdependencies branch January 28, 2024 05:38
@renovate renovate bot changed the title Update npm devDependencies - autoclosed Update npm devDependencies Jan 31, 2024
@renovate renovate bot reopened this Jan 31, 2024
@renovate renovate bot restored the renovate/npm-devdependencies branch January 31, 2024 02:35
@renovate renovate bot force-pushed the renovate/npm-devdependencies branch 5 times, most recently from 550a384 to df9f4e1 Compare February 6, 2024 01:49
@renovate renovate bot force-pushed the renovate/npm-devdependencies branch from df9f4e1 to ed6e356 Compare February 6, 2024 10:12
@renovate renovate bot force-pushed the renovate/npm-devdependencies branch from ed6e356 to 3acf047 Compare February 7, 2024 14:43
@tksst tksst closed this Feb 7, 2024
@renovate renovate bot deleted the renovate/npm-devdependencies branch February 7, 2024 15:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant