Alokai is a Frontend as a Service solution that simplifies composable commerce. It connects all the technologies needed to build and deploy fast & scalable ecommerce frontends. It guides merchants to deliver exceptional customer experiences quickly and easily.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@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.
Replace your existing ESLint configuration with the new configuration format. Below is a basic example from the README.md:
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
);
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@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.
Step 2: Update ESLint Configuration
Replace your existing ESLint configuration with the new configuration format. Below is a basic example from the
README.md
:Read more about FlatConfig in ESLint docs.