Skip to content

Commit

Permalink
ci: release (#7311)
Browse files Browse the repository at this point in the history
* ci: release

* docs: update CHANGELOG.md

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Mateusz Gostański <[email protected]>
  • Loading branch information
3 people authored Nov 12, 2024
1 parent 59e2cd1 commit 01524a1
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 31 deletions.
30 changes: 0 additions & 30 deletions .changeset/gold-chairs-jog.md

This file was deleted.

31 changes: 31 additions & 0 deletions engineering-toolkit/eslint-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# @vue-storefront/eslint-config

## 4.0.0

### Major Changes

**[BREAKING]**: The `@vue-storefront/eslint-config` is migrated to support ESLint v9 and FlatConfig. Please upgrade following way:

**Step 1: Update Dependencies**

First, update your project dependencies to use the latest versions of ESLint and Prettier.

```bash
yarn add -D eslint@^9 prettier@^3 @vue-storefront/eslint-config@^4
```

**Step 2: Update ESLint Configuration**

Replace your existing ESLint configuration with the new configuration format. Below is a basic example from the `README.md`:

```js
import { ecma, typescript, style, concat } from "@vue-storefront/eslint-config";

export default concat(
ecma(),
typescript(),
style()
// Here it's a place for you custom configuration
);
```

Read more about FlatConfig in [ESLint docs](https://eslint.org/docs/latest/use/configure/).

## 3.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion engineering-toolkit/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue-storefront/eslint-config",
"version": "3.1.3",
"version": "4.0.0",
"type": "module",
"main": "src/index.js",
"license": "MIT",
Expand Down

0 comments on commit 01524a1

Please sign in to comment.