Go to file
Renovator Bot ffdbac2c75
continuous-integration/drone/push Build is passing Details
chore(deps): update dependency prettier to v2.3.1 (#31)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | patch | `2.3.0` -> `2.3.1` |

---

### Release Notes

<details>
<summary>prettier/prettier</summary>

### [`v2.3.1`](https://github.com/prettier/prettier/blob/master/CHANGELOG.md#&#8203;231)

[Compare Source](https://github.com/prettier/prettier/compare/2.3.0...2.3.1)

[diff](https://github.com/prettier/prettier/compare/2.3.0...2.3.1)

##### Support TypeScript 4.3 ([#&#8203;10945](https://github.com/prettier/prettier/issues/10945) by [@&#8203;sosukesuzuki](https://github.com/sosukesuzuki))

##### [`override` modifiers in class elements](https://devblogs.microsoft.com/typescript/announcing-typescript-4-3/#override)

```ts
class Foo extends  {
  override method() {}
}
```

##### [static index signatures (`[key: KeyType]: ValueType`) in classes](https://devblogs.microsoft.com/typescript/announcing-typescript-4-3/#static-index-signatures)

```ts
class Foo {
  static [key: string]: Bar;
}
```

##### [`get` / `set` in type declarations](https://devblogs.microsoft.com/typescript/announcing-typescript-4-3/#separate-write-types)

```ts
interface Foo {
  set foo(value);
  get foo(): string;
}
```

##### Preserve attributes order for element node ([#&#8203;10958](https://github.com/prettier/prettier/issues/10958) by [@&#8203;dcyriller](https://github.com/dcyriller))

<!-- prettier-ignore -->

```handlebars
{{!-- Input --}}
<MyComponent
  {{! this is a comment for arg 1}}
  @&#8203;arg1="hello"
  {{on "clik" this.modify}}
  @&#8203;arg2="hello"
  {{! this is a comment for arg 3}}
  @&#8203;arg3="hello"
  @&#8203;arg4="hello"
  {{! this is a comment for arg 5}}
  @&#8203;arg5="hello"
  ...arguments
/>
{{!-- Prettier stable --}}
<MyComponent
  @&#8203;arg1="hello"
  @&#8203;arg2="hello"
  @&#8203;arg3="hello"
  @&#8203;arg4="hello"
  @&#8203;arg5="hello"
  ...arguments
  {{on "clik" this.modify}}
  {{! this is a comment for arg 1}}
  {{! this is a comment for arg 3}}
  {{! this is a comment for arg 5}}
/>
{{!-- Prettier main --}}
<MyComponent
  {{! this is a comment for arg 1}}
  @&#8203;arg1="hello"
  {{on "clik" this.modify}}
  @&#8203;arg2="hello"
  {{! this is a comment for arg 3}}
  @&#8203;arg3="hello"
  @&#8203;arg4="hello"
  {{! this is a comment for arg 5}}
  @&#8203;arg5="hello"
  ...arguments
/>
```

##### Track cursor position properly when it’s at the end of the range to format ([#&#8203;10938](https://github.com/prettier/prettier/issues/10938) by [@&#8203;j-f1](https://github.com/j-f1))

Previously, if the cursor was at the end of the range to format, it would simply be placed back at the end of the updated range.
Now, it will be repositioned if Prettier decides to add additional code to the end of the range (such as a semicolon).

<!-- prettier-ignore -->

```jsx
// Input (<|> represents the cursor)
const someVariable = myOtherVariable<|>
// range to format:  ^^^^^^^^^^^^^^^

// Prettier stable
const someVariable = myOtherVariable;<|>
// range to format:  ^^^^^^^^^^^^^^^

// Prettier main
const someVariable = myOtherVariable<|>;
// range to format:  ^^^^^^^^^^^^^^^
```

##### Break the LHS of type alias that has complex type parameters ([#&#8203;10901](https://github.com/prettier/prettier/issues/10901) by [@&#8203;sosukesusuzki](https://github.com/sosukesusuzki))

<!-- prettier-ignore -->

```ts
// Input
type FieldLayoutWith<
  T extends string,
  S extends unknown = { width: string }
> = {
  type: T;
  code: string;
  size: S;
};

// Prettier stable
type FieldLayoutWith<T extends string, S extends unknown = { width: string }> =
  {
    type: T;
    code: string;
    size: S;
  };

// Prettier main
type FieldLayoutWith<
  T extends string,
  S extends unknown = { width: string }
> = {
  type: T;
  code: string;
  size: S;
};

```

##### Break the LHS of assignments that has complex type parameters ([#&#8203;10916](https://github.com/prettier/prettier/issues/10916) by [@&#8203;sosukesuzuki](https://github.com/sosukesuzuki))

<!-- prettier-ignore -->

```ts
// Input
const map: Map<
  Function,
  Map<string | void, { value: UnloadedDescriptor }>
> = new Map();

// Prettier stable
const map: Map<Function, Map<string | void, { value: UnloadedDescriptor }>> =
  new Map();

// Prettier main
const map: Map<
  Function,
  Map<string | void, { value: UnloadedDescriptor }>
> = new Map();

```

##### Fix incorrectly wrapped arrow functions with return types ([#&#8203;10940](https://github.com/prettier/prettier/issues/10940) by [@&#8203;thorn0](https://github.com/thorn0))

<!-- prettier-ignore -->

```ts
// Input
longfunctionWithCall12("bla", foo, (thing: string): complex<type<something>> => {
  code();
});

// Prettier stable
longfunctionWithCall12("bla", foo, (thing: string): complex<
  type<something>
> => {
  code();
});

// Prettier main
longfunctionWithCall12(
  "bla",
  foo,
  (thing: string): complex<type<something>> => {
    code();
  }
);
```

##### Avoid breaking call expressions after assignments with complex type arguments ([#&#8203;10949](https://github.com/prettier/prettier/issues/10949) by [@&#8203;sosukesuzuki](https://github.com/sosukesuzuki))

<!-- prettier-ignore -->

```ts
// Input
const foo = call<{
  prop1: string;
  prop2: string;
  prop3: string;
}>();

// Prettier stable
const foo =
  call<{
    prop1: string;
    prop2: string;
    prop3: string;
  }>();

// Prettier main
const foo = call<{
  prop1: string;
  prop2: string;
  prop3: string;
}>();

```

##### Fix order of `override` modifiers ([#&#8203;10961](https://github.com/prettier/prettier/issues/10961) by [@&#8203;sosukesuzuki](https://github.com/sosukesuzuki))

```ts
// Input
class Foo extends Bar {
  abstract override foo: string;
}

// Prettier stable
class Foo extends Bar {
  abstract override foo: string;
}

// Prettier main
class Foo extends Bar {
  abstract override foo: string;
}
```

</details>

---

### Configuration

📅 **Schedule**: 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.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box.

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: docker/alpine-tools#31
Co-authored-by: Renovator Bot <renovator@rknet.org>
Co-committed-by: Renovator Bot <renovator@rknet.org>
2021-06-06 21:17:32 +02:00
overlay add missing overlay 2020-11-02 00:06:39 +01:00
.drone.jsonnet switch to buildx 2021-01-18 21:07:55 +01:00
.drone.yml switch to buildx 2021-01-18 21:07:55 +01:00
.gitignore [skip ci] remove local changelog 2021-02-11 21:05:37 +01:00
.markdownlint.yml initial commit 2020-11-02 00:03:33 +01:00
.prettierignore chore: improve generated changelog 2021-05-09 22:42:32 +02:00
Dockerfile.amd64 chore(deps): update dependency prettier to v2.3.1 (#31) 2021-06-06 21:17:32 +02:00
Dockerfile.arm chore(deps): update dependency prettier to v2.3.1 (#31) 2021-06-06 21:17:32 +02:00
Dockerfile.arm64 chore(deps): update dependency prettier to v2.3.1 (#31) 2021-06-06 21:17:32 +02:00
LICENSE update license 2021-02-11 20:57:37 +01:00
README.md [skip ci] add prettier to package list in readme 2021-05-09 17:28:58 +02:00
manifest-quay.tmpl add back quay publishing 2021-01-18 20:49:15 +01:00
manifest.tmpl build multiarch images 2021-01-18 20:41:40 +01:00
renovate.json [skip ci] cleanup renovate config 2021-02-20 13:23:47 +01:00

README.md

alpine

Custom Alpine image including a common toolset

Build Status Docker Hub Quay.io Source: Gitea License: MIT

Custom Alpine image including a common toolset.

Included software:

  • curl
  • make
  • tar
  • git
  • gomplate
  • url-parser
  • prettier

License

This project is licensed under the MIT License - see the LICENSE file for details.