Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Update all dependencies #5

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

Merged
sgarnotel merged 1 commit into hotfix from renovate/all
Aug 7, 2023
Merged

Update all dependencies #5

sgarnotel merged 1 commit into hotfix from renovate/all
Aug 7, 2023

Conversation

Copy link

@renovate renovate bot commented Aug 7, 2023
edited
Loading

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@swc/core (source) 1.3.72 -> 1.3.74 age adoption passing confidence
@swc/jest 0.2.27 -> 0.2.28 age adoption passing confidence
prettier (source) 3.0.0 -> 3.0.1 age adoption passing confidence

Release Notes

swc-project/swc (@​swc/core)

v1.3.74

Compare Source

Bug Fixes

v1.3.73

Compare Source

Bug Fixes
  • (es/minifier) Handle synthesized export default expression (#​7707) (5ea6f27)

  • (es/utils) Fix string evaluation of array literals (#​7731) (e8c58cf)

Features
  • (es/preset-env) Update builtin definitions for core-js imports (#​7715) (b4f3332)
Testing
  • (es/compat) Add a test for optional chaining with loose mode (#​7726) (216c4f1)
swc-project/jest (@​swc/jest)

v0.2.28

Compare Source

prettier/prettier (prettier)

v3.0.1

Compare Source

diff

Fix cursor positioning for a special case (#​14812 by @​fisker)
// <|> is the cursor position
/* Input */
// All messages are represented in JSON.
// So, the prettier.py controls a subprocess which spawns "node {this_file}".
import {<|> } from "fs"
/* Prettier 3.0.0 */
// All messages are represented in JSON.
// So, the prettier.py <|>controls a subprocess which spawns "node {this_file}".
import {} from "fs"
/* Prettier 3.0.1 */
// All messages are represented in JSON.
// So, the prettier.py controls a subprocess which spawns "node {this_file}".
import {<|>} from "fs"
Fix plugins/estree.d.ts to make it a module (#​15018 by @​kingyue737)

Add export {} in plugins/estree.d.ts to fix the "File is not a module" error

Add parenthesis around leading multiline comment in return statement (#​15037 by @​auvred)
// Input
function fn() {
 return (
 /**
 * @&#8203;type {...}
 */ expresssion
 )
}
// Prettier 3.0.0
function fn() {
 return /**
 * @&#8203;type {...}
 */ expresssion;
}
// Prettier 3.0.1
function fn() {
 return (
 /**
 * @&#8203;type {...}
 */ expresssion
 );
}
Add support for Vue "Generic Components" (#​15066 by @​auvred)

https://blog.vuejs.org/posts/vue-3-3#generic-components

<!-- Input -->
<script setup lang="ts" generic="T extends Type1 & Type2 & (Type3 | Type4), U extends string | number | boolean"></script>
<!-- Prettier 3.0.0 -->
<script
 setup
 lang="ts"
 generic="T extends Type1 & Type2 & (Type3 | Type4), U extends string | number | boolean"
></script>
<!-- Prettier 3.0.1 -->
<script
 setup
 lang="ts"
 generic="
 T extends Type1 & Type2 & (Type3 | Type4),
 U extends string | number | boolean
 "
></script>
Fix comments print in IfStatement (#​15076 by @​fisker)
function a(b) {
 if (b) return 1; // comment
 else return 2;
}
/* Prettier 3.0.0 */
Error: Comment "comment" was not printed. Please report this error!
/* Prettier 3.0.1 */
function a(b) {
 if (b) return 1; // comment
 else return 2;
}
Add missing type definition for printer.preprocess (#​15123 by @​so1ve)
export interface Printer<T = any> {
 // ...
+ preprocess?:
+ | ((ast: T, options: ParserOptions<T>) => T | Promise<T>)
+ | undefined;
}
Add missing getVisitorKeys method type definition for Printer (#​15125 by @​auvred)
const printer: Printer = {
 print: () => [],
 getVisitorKeys(node, nonTraversableKeys) {
 return ["body"];
 },
};
Add typing to support readonly array properties of AST Node (#​15127 by @​auvred)
// Input
interface TestNode {
 readonlyArray: readonly string[];
}
declare const path: AstPath<TestNode>;
path.map(() => "", "readonlyArray");
// Prettier 3.0.0
interface TestNode {
 readonlyArray: readonly string[];
}
declare const path: AstPath<TestNode>;
path.map(() => "", "readonlyArray");
// ^ Argument of type '"readonlyArray"' is not assignable to parameter of type '"regularArray"'. ts(2345)
// Prettier 3.0.1
interface TestNode {
 readonlyArray: readonly string[];
}
declare const path: AstPath<TestNode>;
path.map(() => "", "readonlyArray");
Add space before unary minus followed by a function call (#​15129 by @​pamelalozano)
// Input
div {
 margin: - func();
}
// Prettier 3.0.0
div {
 margin: -func();
}
// Prettier 3.0.1
div {
 margin: - func();
}

Configuration

📅 Schedule: Branch creation - "before 9am on Monday" in timezone Europe/Paris, 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.

@sgarnotel sgarnotel merged commit 4707803 into hotfix Aug 7, 2023
@sgarnotel sgarnotel deleted the renovate/all branch August 7, 2023 17:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Reviewers
No reviews
Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

1 participant

AltStyle によって変換されたページ (->オリジナル) /