# Updating to New Releases

Create ScandiPWA App is divided into two packages:

* `create-scandipwa-app` is a global command-line utility that you use to create new projects.
* `@scandipwa/scandipwa-scripts` is a development dependency in the generated projects (including this one).

When you run `npx create-scandipwa-app my-app` it automatically installs the latest version of Create React App.

Create React App creates a project with the latest version of `@scandipwa/scandipwa-scripts` so you’ll get all the new features and improvements in newly created apps automatically.

To update an existing project to a new version of `@scandipwa/scandipwa-scripts`, [open the change-log](https://github.com/scandipwa/create-scandipwa-app/releases), find the version you’re currently on (check `package.json` in this folder, if you’re not sure), and apply the migration instructions for the newer versions.

In most cases bumping the `@scandipwa/scandipwa-scripts` version in `package.json` and running `npm install` (or `yarn install`) in this folder should be enough, but it’s good to consult the [change-log](https://github.com/scandipwa/create-scandipwa-app/releases) for potential breaking changes.

To bump the version of `@scandipwa/scandipwa-scripts` to latest available version, use:

{% tabs %}
{% tab title="yarn (recommended)" %}

```
yarn add @scandipwa/scandipwa-scripts@latest
```

{% endtab %}

{% tab title="npm" %}

```
npm install @scandipwa/scandipwa-scripts@latest
```

{% endtab %}
{% endtabs %}

We commit to keeping the breaking changes minimal so you can upgrade `@scandipwa/scandipwa-scripts` painlessly.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.create-scandipwa-app.com/getting-started/updating-to-new-releases.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
