Improved
FastStore: Simplified Lighthouse dependency for projects
January, 8
The @faststore/lighthouse
package is now a core dependency for @faststore/cli
. This change eliminates the need to manually declare @faststore/lighthouse
in your project's package.json
file.
What needs to be done?
To ensure that the @faststore/lighthouse
package is included in the final production build, follow these steps:
- Open your FastStore project.
- Go to the
package.json
file and remove the@faststore/lighthouse
from thedevDependencies
section. - Open a terminal and update the
@faststore/cli
package to the latest version by runningyarn add @faststore/cli@latest
. - Run
yarn dev
to sync the changes to your project.